@import url('style.css');

:root {
    --fs-title : clamp(2rem, 4vw, 3.3rem);
    --fs-sub   : clamp(1rem, 1.4vw, 1.4rem);
    --fs-badge : 17px;
    --fs-body  : 1rem;
}

/* ════════════════════════════════════════════════
   BG-GROUP: 1 background fixo por seção
════════════════════════════════════════════════ */
.bg-group {
    position: fixed;
    inset: 0;
    z-index: -1;
    opacity: 0;
    pointer-events: none;
    transition: opacity .6s cubic-bezier(.4, 0, .2, 1);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg-group--visible {
    opacity: 1;
}

/* ── bg-group--hero (seção 1) ── */
.bg-group--hero {
    background-image: url('../img/paginas/sites-para-imobiliarias/bg/bg-1.jpg');
}

/* ── bg-group--problema (seção 2) ── */
.bg-group--problema {
    background-image: url('../img/paginas/sites-para-imobiliarias/bg/bg-2.jpg');
}

/* ── bg-group--ecossistema (seção 3 — exemplos+ecossistema merged) ── */
.bg-group--ecossistema {
    background-image: url('../img/paginas/sites-para-imobiliarias/bg/bg-3.jpg');
}

/* ── bg-group--automacao (seção 4) ── */
.bg-group--automacao {
    background-image: url('../img/paginas/sites-para-imobiliarias/bg/bg-4.jpg');
}

/* ── bg-group--integracao (seção 5) ── */
.bg-group--integracao {
    background-image: url('../img/paginas/sites-para-imobiliarias/bg/bg-5.jpg');
}

/* ── bg-group--api (seção 6) ── */
.bg-group--api {
    background-image: url('../img/paginas/sites-para-imobiliarias/bg/bg-6.jpg');
}

/* ── bg-group--faq (seção 7) ── */
.bg-group--faq {
    background-image: url('../img/paginas/sites-para-imobiliarias/bg/bg-2.jpg');
}

/* ── bg-group--contato (demonstração + footer) ── */
.bg-group--contato {
    background-image: url('../img/paginas/sites-para-imobiliarias/bg/bg-8.jpg');
}

/* Aplica padding-top antes do fullPage.js inicializar — evita flash de layout */
#fullpage .section:not(.footer-section),
#fullpage .fp-section:not(.footer-section) {
    padding-top: 150px;
}

/* Remove padding-top do fullPage.js no wrapper do footer */
#fullpage .footer-section {
    padding-top: 0 !important;
}

/* Remove badge "Made with fullPage.js" */
.fp-watermark {
    display: none !important;
}

/* hero visível imediatamente, sem esperar o fullPage ativar */
.bg-group--hero {
    opacity: 1;
}

.site-wrapper {
    position: relative;
    z-index: 1
}

/* ── Hero chat cards flutuantes ── */
.hero__gif-wrapper {
    position: relative
}

.hero__chat {
    position: absolute;
    z-index: 10
}

.hero__chat--top {
    top: 6%;
    left: -40px
}

.hero__chat--bottom {
    bottom: 8%;
    right: -20px
}

.chat-bubble {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #fff;
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: 0 8px 28px rgba(8, 20, 49, .18);
    min-width: 230px;
    max-width: 270px
}

.chat-bubble__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-brand-blue, #1a45b0);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .85rem;
    flex-shrink: 0
}

.chat-bubble__avatar--green {
    background: var(--color-success, #1a7a3c)
}

.chat-bubble__body {
    flex: 1;
    min-width: 0
}

.chat-bubble__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px
}

.chat-bubble__name {
    font-size: .82rem;
    color: #0d1b3e;
    font-weight: 700
}

.chat-bubble__time {
    font-size: .72rem;
    color: #6b7a99;
    white-space: nowrap
}

.chat-bubble__msg {
    font-size: .82rem;
    color: #3d4a66;
    line-height: 1.35
}

/* ── del (strikethrough) na seção problema ── */
.problema__desc del {
    text-decoration: line-through;
    opacity: .55
}

/* ── Ecossistema header box (merged section) ── */
.exemplos__header {
    background: var(--gradient-blue-v, linear-gradient(135deg, #1a45b0, #0a9db5));
    border-radius: 20px;
    padding: 28px 40px;
    text-align: center;
    margin-bottom: 40px
}

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

.hero {
    min-height: calc(100vh - 147px);
    display: flex;
    align-items: center;
    padding: 60px 0 80px
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 90px
}

.hero__content {
    display: flex;
    flex-direction: column;
    gap: 40px
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 7px 20px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--text-white);
    background: #ffffff24;
    opacity: 0;
    animation: fade-up .6s .1s ease forwards;
}

.hero__headline {
    font-size: clamp(3rem, 3vw, 3rem);
    font-weight: 400;
    line-height: 0.9;
    color: var(--text-white);
    opacity: 0;
    animation: fade-up .6s .2s ease forwards
}

.hero__headline .hl-grad {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600
}

.hero__subline {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1;
    color: var(--text-white);
    opacity: 0;
    animation: fade-up .6s .32s ease forwards
}

.hero__cta-group {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    opacity: 0;
    animation: fade-up .6s .44s ease forwards;
    flex-direction: column
}

.hero__cta-group .btn-primary {
    font-size: 1.5rem;
    font-weight: 600;
    padding: 9px 30px;
    border-radius: 6px;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white) !important;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 9px;
    background: #ffffff16;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-ghost:hover {
    color: var(--text-white);
    border-color: rgba(255, 255, 255, .25)
}

.hero__visual {
    position: relative;
    opacity: 0;
    display: flex;
    animation: fade-right .8s .3s ease forwards;
    justify-content: flex-end;
    margin-top: -75px
}

.hero__gif {
    display: block;
    height: 515px;
    object-fit: contain;
    border-radius: 12px
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

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

@keyframes fade-right {
    from {
        opacity: 0;
        transform: translateX(30px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.problema {
    position: relative;
    overflow: hidden;
    padding: 95px 0
}

.problema .container {
    position: relative;
    z-index: 2
}

.problema__inner {
    display: grid;
    grid-template-columns: 1fr 0.5fr;
    align-items: center;
    gap: 50px;
    min-height: 520px
}

.problema__content {
    position: relative;
    z-index: 3
}

.problema__tag {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 7px 20px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--text-white);
    background: #ffffff24;
    opacity: 0;
    animation: fade-up .6s .1s ease forwards;
    margin-bottom: 28px
}

.problema__title {
    font-size: clamp(2.2rem, 4vw, 3.3rem);
    line-height: .98;
    font-weight: 300;
    color: var(--text-white);
    margin-bottom: 40px;
    letter-spacing: -.03em
}

.problema__title strong {
    font-weight: 600;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.problema__desc {
    font-size: 1.4rem;
    line-height: 1;
    font-weight: 300;
    color: var(--text-white);
    margin-bottom: 40px
}

.problema__desc strong {
    color: var(--text-white);
    font-weight: 600;
    font-size: 1.7rem
}

.problema__desc.color strong {
    background: var(--text-white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 1.7rem
}

.problema__desc.color strong span {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 1.7rem
}

.problema__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3
}

.problema__visual img {
    width: 500px;
    display: block;
}

.exemplos {
    position: relative;
    overflow: hidden;
    padding: 60px 0
}

.exemplos .container {
    position: relative;
    z-index: 2
}

.exemplos__header {
    text-align: center
}

.exemplos__badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 7px 20px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--text-white);
    background: #ffffff24;
    opacity: 0;
    animation: fade-up .6s .1s ease forwards;
    margin-bottom: 15px
}

.exemplos__icon {
    width: 50px;
    height: 50px;
    margin: 16px auto 0;
    color: var(--text-blue);
    display: flex;
    align-items: center;
    justify-content: center
}

.exemplos__icon img {
    width: 100%;
    height: 100%;
    display: block
}

.exemplos__title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    line-height: .98;
    font-weight: 300;
    color: var(--text-white);
    margin: 0 auto;
    margin-bottom: 30px
}

.exemplos__title strong {
    font-weight: 700;
    color: var(--color-blue-light)
}

.exemplos__desc {
    font-size: 1.55rem;
    line-height: 1;
    font-weight: 300;
    color: var(--text-white);
    margin-bottom: 30px
}

.ecossistema {
    position: relative;
    padding: 100px 0;
    overflow: hidden
}

.ecossistema__header {
    text-align: center
}

.ecossistema__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 26px;
    border-radius: 999px;
    background: var(--color-info-bg);
    color: var(--text-blue);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 28px
}

.ecossistema__title {
    font-size: clamp(2.1rem, 4vw, 2.5rem);
    line-height: 1.08;
    font-weight: 400;
    color: var(--text-white);
}

.ecossistema__title .grad {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.ecossistema__subtitle {
    font-size: 1.6rem;
    line-height: 1.18;
    font-weight: 400;
    color: var(--text-mid);
    margin: 0 auto
}

.ecossistema__subtitle strong {
    font-weight: 700;
    color: var(--text-mid)
}

.ecossistema__flow {
    display: grid;
    grid-template-columns: repeat(3, 256px);
    gap: 60px;
    align-items: center;
    position: relative;
    padding-bottom: 80px;
    justify-content: center
}

.ecossistema-card-wrap {
    position: relative;
    height: 100%
}

@media (min-width: 901px) {
    .ecossistema-card {
        position: relative;
    }
    .ecossistema-card:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 50%;
        right: -49px;
        transform: translateY(-50%);
        width: 45px;
        height: 5px;
        border-radius: 999px;
        background: var(--gradient-inverse)
    }

    .ecossistema-card:not(:last-child)::before {
        content: "";
        position: absolute;
        top: 50%;
        right: -50px;
        width: 18px;
        height: 18px;
        border-top: 5px solid var(--text-blue);
        border-right: 5px solid var(--text-blue);
        transform: translateY(-50%) rotate(45deg)
    }
}

.ecossistema-card {
    min-height: 100%;
    border-radius: 22px;
    padding: 40px 0px;
    background: var(--text-white);
    color: var(--text-mid);
    box-shadow: 0 14px 34px rgba(24, 60, 128, .18);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start
}

.ecossistema-card__step {
    font-size: .78rem;
    line-height: 1;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    opacity: .95;
    margin-bottom: 18px
}

.ecossistema-card__icon,
.recurso-card__tag {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: var(--color-blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    flex-shrink: 0;
}

.ecossistema-card .recurso-card__tag {
    margin-bottom: 24px;
}

.recurso-card__tag img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.ecossistema-card__icon img {
    width: 44px;
    height: 44px
}

.ecossistema-card__title {
    font-size: 24px;
    line-height: 1.02;
    font-weight: 700;
    margin-bottom: 15px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.ecossistema-card__title img {
    max-width: 150px;
    height: auto;
    display: block;
    margin: 0 auto
}

.ecossistema-card__desc {
    font-size: 1rem;
    line-height: 1.12;
    font-weight: 400;
    color: var(--text-mid)
}

.ecossistema__bar {
    background: var(--gradient-blue);
    padding: 8px 20px
}

.ecossistema__bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px
}

.ecossistema__bar-text {
    font-size: 1rem;
    line-height: 1;
    font-weight: 500;
    color: var(--text-white)
}

.ecossistema__bar-text strong {
    font-weight: 700
}

.ecossistema__bar-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 14px;
    border-radius: 8px;
    background: var(--gradient-purple);
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: var(--transition)
}

.ecossistema__bar-btn:hover {
    opacity: .92;
    transform: translateY(-1px)
}

/* ═══════════════════════════════════════════════════════════
   FLUXO CAROUSEL — padrão compartilhado com assinatura-digital
   Usado nas seções: ecossistema (como funciona) e automacao (funcionalidades)
═══════════════════════════════════════════════════════════ */

/* Stage: overflow visible — clipping feito pelo container pai */
.fluxo__cards {
    position: relative;
    overflow: visible;
    width: 100%;
    padding: 24px 0 32px;
}

/* Track: flex natural, posicionamento pixel-based via JS */
.fluxo__track {
    display: flex;
    gap: 28px;
    transition: transform .5s cubic-bezier(.4, 0, .2, 1);
    will-change: transform;
}

/* Card base */
.fluxo-card {
    flex: 0 0 330px;
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 32px 19px 28px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(8px);
    opacity: 0.45;
    transition: background .4s, box-shadow .4s, opacity .4s, border-color .4s;
    cursor: pointer;
    align-items: center;
    text-align: center;
}

.fluxo-card.is-active {
    background: #fff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .1),
        0 0 0 1px rgba(110, 168, 255, .15),
        0 20px 50px -20px rgba(58, 130, 255, .5);
    border-color: rgba(110, 168, 255, .45);
    opacity: 1;
    cursor: default;
}

.fluxo-card__tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 14px;
    border-radius: 999px;
    background: rgba(78, 168, 232, .15);
    color: var(--text-blue);
    font-size: .88rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .04em;
    transition: background .4s, color .4s;
}

.fluxo-card:not(.is-active) .fluxo-card__tag {
    background: rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .8);
}

.fluxo-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: none;
}

.fluxo-card:not(.is-active) .fluxo-card__title {
    color: rgba(255, 255, 255, .95);
}

.fluxo-card__desc {
    font-size: .92rem;
    line-height: 1.5;
    color: var(--text-mid);
    flex: 1;
    transition: color .4s;
    text-align: start;
}

.fluxo-card:not(.is-active) .fluxo-card__desc {
    color: rgba(255, 255, 255, .45);
}

/* Ícones dentro dos cards (ecossistema) */
.fluxo-card .ecossistema-card__icon {
    height: 56px;
    border-radius: 12px;
    background: var(--color-blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    flex-shrink: 0;
}

.fluxo-card .ecossistema-card__icon img {
    height: 40px;
    object-fit: contain;
}

.fluxo-card .ecossistema-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: none;
}

.fluxo-card:not(.is-active) .ecossistema-card__title {
    background: none;
    -webkit-text-fill-color: rgba(255, 255, 255, .9);
    color: rgba(255, 255, 255, .9);
}

.fluxo-card .ecossistema-card__desc {
    font-size: .9rem;
    color: var(--text-mid);
    line-height: 1.45;
    transition: color .4s;
}

.fluxo-card:not(.is-active) .ecossistema-card__desc {
    color: rgba(255, 255, 255, .5);
}

/* Ícone dentro dos cards (automacao/funcionalidades) */
.fluxo-card .automacao-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--color-blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    flex-shrink: 0;
}

.fluxo-card .automacao-card__icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* Container do carrossel de funcionalidades */
.automacao__carousel-wrap {
    width: 100%;
    overflow: visible;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

/* Controls (dots + arrows) */
.fluxo__controls {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    justify-content: center;
}

.fluxo__dots {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 4px 0;
}

.fluxo__arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .35);
    background: rgba(255, 255, 255, .10);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, border-color .2s, opacity .2s;
    flex-shrink: 0;
    line-height: 1;
    padding: 0;
}

.fluxo__arrow:hover {
    background: rgba(255, 255, 255, .22);
    border-color: rgba(255, 255, 255, .6);
}

.fluxo__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .35);
    transition: background .3s, width .3s;
    cursor: pointer;
    border: none;
    padding: 0;
    flex-shrink: 0;
}

.fluxo__dot.is-active {
    background: #fff;
    width: 22px;
    border-radius: 4px;
}

/* ─── fim bloco fluxo carousel ─── */

.automacao {
    position: relative;
    overflow: hidden;
    padding: 110px 0
}

.automacao .container {
    position: relative;
    z-index: 2
}

.automacao__inner {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 50px
}

.automacao__content {
    position: relative;
    z-index: 3
}

.automacao__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .16);
    color: var(--text-white);
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 30px
}

.automacao__title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    line-height: .98;
    font-weight: 300;
    color: var(--text-white);
    margin-bottom: 24px;
    letter-spacing: -.03em
}

.automacao__title strong {
    font-weight: 700;
    color: var(--color-blue-light)
}

.automacao__desc {
    font-size: 1.35rem;
    line-height: 1;
    font-weight: 300;
    color: rgba(255, 255, 255, .95);
    margin-bottom: 35px
}

.automacao__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 520px;
    margin-bottom: 35px
}

.automacao__list li {
    position: relative;
    padding-left: 28px;
    font-size: 1rem;
    line-height: 1;
    color: var(--text-white);
    font-weight: 400
}

.automacao__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--color-success);
    color: var(--text-white);
    font-size: .72rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center
}

.automacao__visual {
    position: relative;
    display: grid;
    grid-template-columns: 550px 550px;
    gap: 40px;
    justify-content: center;
    align-items: center;
    z-index: 3
}

.automacao__visual img {
    width: 50px;
    height: auto;
    padding: 5px;
    display: block;
    border-radius: 10px;
    box-shadow: 0 12px 32px rgba(8, 20, 49, .18);
}

.automacao__shape {
    position: absolute;
    right: -85px;
    top: 300px;
    width: 1000px;
    height: 1000px;
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, .85);
    background: radial-gradient(circle at 50% 35%, rgba(255, 255, 255, .22) 0%, rgba(255, 255, 255, .10) 32%, rgba(255, 255, 255, .04) 55%, rgba(255, 255, 255, .01) 72%, transparent 100%);
    z-index: 1;
    pointer-events: none
}

.automacao__shape::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 61% 63%, transparent 63%, rgba(255, 255, 255, 0.5) 84%, rgba(255, 255, 255, 1) 100%)
}

.automacao .container,
.automacao__content,
.automacao__visual,
.automacao__bar {
    position: relative;
    z-index: 2;
    text-align: center
}

.automacao__bar {
    margin-top: 95px;
    background: var(--gradient-cta);
    color: var(--text-white);
    text-align: center;
    font-size: 1rem;
    line-height: 1.3;
    font-weight: 500;
    padding: 12px 20px;
    position: relative;
    z-index: 3
}

.automacao-card-wrap {
    background: var(--text-white);
    border-radius: 10px;
    box-shadow: var(--shadow-card);
    padding: 15px 30px
}

.automacao-card {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 20px;
    align-items: center;
}

@media (max-width: 900px) {
    .automacao-card {
        display: flex;
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }
    .automacao-card .recurso-card__tag {
        margin-bottom: 24px;
    }
}

.automacao-card__icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--color-blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    backdrop-filter: blur(4px)
}

.automacao-card__title {
    font-size: 1.5rem;
    color: var(--color-gray-dark)
}

.integracao {
    position: relative;
    overflow: hidden;
    padding: 95px 0
}

.integracao .container {
    position: relative;
    z-index: 2
}

.integracao__inner {
    display: grid;
    grid-template-columns: 1fr 0.5fr;
    align-items: center;
    gap: 50px;
    min-height: 520px
}

.integracao__content {
    position: relative;
    z-index: 3
}

.integracao__tag {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 7px 20px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--text-white);
    background: #ffffff24;
    opacity: 0;
    animation: fade-up .6s .1s ease forwards;
    margin-bottom: 28px
}

.integracao__title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    line-height: .98;
    font-weight: 300;
    color: var(--text-white);
    margin-bottom: 30px;
    letter-spacing: -.03em
}

.integracao__title strong {
    font-weight: 600;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.integracao__desc {
    font-size: 1.4rem;
    line-height: 1;
    font-weight: 300;
    color: var(--text-white);
    margin-bottom: 30px
}

.integracao__desc strong {
    color: var(--text-blue);
    font-weight: 600;
    font-size: 1.7rem
}

.integracao__desc.color strong {
    background: var(--gradient-problema);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 1.7rem
}

.integracao__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3
}

.integracao__visual img {
    width: 630px;
    display: block;
}

.api {
    position: relative;
    padding: 110px 0;
    overflow: hidden
}

.api__tag {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 7px 20px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--text-white);
    background: #ffffff24;
    opacity: 0;
    animation: fade-up .6s .1s ease forwards;
    margin-bottom: 28px
}

.api__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1
}

.api__title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    line-height: 1;
    font-weight: 400;
    color: var(--text-white);
    margin-bottom: 40px
}

.api__title strong {
    font-weight: 600;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.api__text {
    font-size: 1.4rem;
    line-height: 1;
    font-weight: 300;
    color: rgba(255, 255, 255, 1)
}

.api__visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 470px;
    position: relative
}

/* ════════════════════════════════════════════════ */
.api-diagrama {
    position: relative;
    width: 520px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center
}

.venn-elipse {
    position: absolute;
    width: 435px;
    height: 180px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.75)
}

.venn-elipse--esquerda {
    left: -95px;
    animation: enter-left .9s cubic-bezier(.22, 1, .36, 1) both, pulse-left 3.2s ease-in-out 1s infinite
}

.venn-elipse--direita {
    right: -95px;
    animation: enter-right .9s cubic-bezier(.22, 1, .36, 1) .15s both, pulse-right 3.2s ease-in-out 1.15s infinite
}

.venn-glow {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 108px;
    height: 164px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, .13) 0%, transparent 75%);
    animation: glow-center 3.2s ease-in-out 1s infinite;
    pointer-events: none;
    z-index: 1
}

.venn-connector {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 360px;
    height: 2px;
    z-index: 0;
    overflow: visible;
    pointer-events: none
}

.venn-connector line {
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 1;
    stroke-dasharray: 5 5;
    animation: dash-move 2s linear infinite
}

.venn-connector circle {
    fill: rgba(255, 255, 255, 0.85);
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.9));
    animation: dot-travel 2.5s ease-in-out infinite
}

.venn-item {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 3
}

.venn-item p {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.1em;
    text-transform: uppercase
}

.venn-item--esquerda {
    left: -45px;
    animation: fade-up .7s ease both .5s, pulse-item 3.2s ease-in-out 1s infinite
}

.venn-item--centro {
    left: 50%;
    animation: fade-up-center .7s ease both .7s, pulse-item-center 3.2s ease-in-out 1s infinite
}

.venn-item--direita {
    right: 10px;
    animation: fade-up .7s ease both .9s, pulse-item 3.2s ease-in-out 1s infinite
}

.venn-aura {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, .18) 0%, transparent 70%);
    animation: aura-pulse 3.2s ease-in-out 1s infinite;
    pointer-events: none;
    z-index: -1
}

@keyframes enter-left {
    from {
        transform: translateX(-60px);
        opacity: 0
    }

    to {
        transform: translateX(0);
        opacity: 1
    }
}

@keyframes enter-right {
    from {
        transform: translateX(60px);
        opacity: 0
    }

    to {
        transform: translateX(0);
        opacity: 1
    }
}

@keyframes pulse-left {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.035) translateX(-3px)
    }
}

@keyframes pulse-right {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.035) translateX(3px)
    }
}

@keyframes pulse-item {

    0%,
    100% {
        transform: scale(1);
        filter: brightness(1)
    }

    50% {
        transform: scale(1.06);
        filter: brightness(1.15)
    }
}

@keyframes pulse-item-center {

    0%,
    100% {
        transform: translateX(-50%) scale(1);
        filter: brightness(1)
    }

    50% {
        transform: translateX(-50%) scale(1.06);
        filter: brightness(1.15)
    }
}

@keyframes aura-pulse {

    0%,
    100% {
        opacity: .4;
        transform: scale(1)
    }

    50% {
        opacity: 1;
        transform: scale(1.3)
    }
}

@keyframes glow-center {

    0%,
    100% {
        opacity: .5;
        transform: translate(-50%, -50%) scale(1)
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.15)
    }
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(14px)
    }

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

@keyframes fade-up-center {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(14px)
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0)
    }
}

@keyframes dash-move {
    from {
        stroke-dashoffset: 0
    }

    to {
        stroke-dashoffset: -20
    }
}

@keyframes dot-travel {
    0% {
        cx: 180;
        opacity: 0
    }

    10% {
        opacity: 1
    }

    90% {
        opacity: 1
    }

    100% {
        cx: -180;
        opacity: 0
    }
}

.faq {
    padding: 110px 0 110px
}

.faq__header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 50px
}

.faq__icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-info-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-blue);
    font-size: 1.4rem
}

.faq__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--text-blue);
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.faq__box {
    max-width: 900px;
    margin: 0 auto;
    background: var(--text-white);
    border-radius: 24px;
    padding: 30px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 10px
}

.faq__item:last-child {
    border-bottom: none
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    gap: 20px;
    height: 42px
}

.faq__icon-plus {
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--text-blue);
    transition: transform 0.3s ease
}

.faq__item.active .faq__icon-plus {
    transform: rotate(45deg)
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease
}

.faq__answer p {
    padding: 5px 0 18px;
    font-size: 0.95rem;
    color: var(--text-mid)
}

.faq__item.active .faq__answer {
    max-height: 200px
}

.cta-demo {
    position: relative;
    overflow: hidden;
    padding: 110px 0
}

.cta-demo .container {
    position: relative;
    z-index: 2
}

.cta-demo__inner {
    display: grid;
    grid-template-columns: .95fr .82fr;
    gap: 70px;
    align-items: center
}

.cta-demo__content {
    position: relative;
    z-index: 2
}

.cta-demo__title {
    font-size: clamp(2.4rem, 4vw, 3.3rem);
    line-height: 1;
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: 34px
}

.cta-demo__title strong {
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.cta-demo__desc {
    font-size: 1.45rem;
    line-height: 1;
    font-weight: 300;
    color: var(--text-white);
    margin-bottom: 34px
}

.cta-demo__whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 46px;
    padding: 3px 22px;
    border-radius: 8px;
    background: var(--gradient-primary);
    color: var(--text-white);
    font-size: 1.7rem;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(26, 61, 30, .18);
    transition: var(--transition)
}

.cta-demo__whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(26, 61, 30, .24)
}

.cta-demo__whatsapp-icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    flex-shrink: 0
}

.cta-demo__whatsapp-icon svg {
    width: 100%;
    height: 100%;
    display: block
}

.cta-demo__form-wrap {
    position: relative;
    z-index: 2
}

.cta-demo__form {
    background: var(--text-white);
    border-radius: 18px;
    padding: 36px;
    box-shadow: 0 18px 42px rgba(8, 20, 49, .16)
}

.cta-demo__form-title {
    font-size: 1.6rem;
    line-height: 1;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px
}

.cta-demo__form-subtitle {
    font-size: 0.9rem;
    line-height: 1.25;
    color: var(--color-navy);
    margin-bottom: 26px
}

.cta-demo__field {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 16px
}

.cta-demo__field label {
    font-size: .95rem;
    line-height: 1;
    font-weight: 700;
    color: var(--text-mid)
}

.cta-demo__field input,
.cta-demo__field select {
    width: 100%;
    height: 48px;
    border: 1px solid var(--color-gray-mid);
    border-radius: 8px;
    background: var(--text-white);
    padding: 0 14px;
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--text-mid);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition)
}

.cta-demo__field input::placeholder {
    color: var(--color-gray-mid)
}

.cta-demo__field input:focus,
.cta-demo__field select:focus {
    border-color: var(--text-blue);
    box-shadow: 0 0 0 3px rgba(26, 69, 146, .10)
}

.cta-demo__submit {
    width: 100%;
    min-height: 52px;
    border: none;
    border-radius: 8px;
    background: var(--text-blue);
    color: var(--text-white);
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
    transition: var(--transition)
}

.cta-demo__submit:hover {
    background: var(--color-navy);
    transform: translateY(-1px)
}

.cta-demo__note {
    text-align: center;
    font-size: .92rem;
    line-height: 1.3;
    color: var(--color-navy);
    margin-top: 14px
}

.cta-demo__orb {
    position: absolute;
    right: 0;
    bottom: -665px;
    width: 1200px;
    height: 1200px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, .16);
    background: radial-gradient(circle at 61% 63%, transparent 45%, rgba(255, 255, 255, 0.2) 84%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
    z-index: 1
}

.cta-demo__orb::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .07)
}

@media (max-width:1400px) {
    .hero__headline {
        font-size: 2.8rem
    }

    .hero__inner {
        gap: 60px
    }

    .problema__inner,
    .integracao__inner {
        gap: 40px
    }

    .automacao__shape {
        width: 800px;
        height: 800px;
        right: -50px;
        top: 250px
    }

    .automacao__visual {
        grid-template-columns: 1fr 1fr
    }

    .cta-demo__inner {
        gap: 50px
    }

    .cta-demo__title {
        font-size: 3.2rem
    }
}

@media (max-width:1199px) {
    .hero__headline {
        font-size: 2.5rem;
        line-height: 1
    }

    .hero__subline {
        font-size: 1.25rem
    }

    .hero__inner {
        gap: 40px
    }

    .problema__inner,
    .integracao__inner {
        grid-template-columns: 1fr 1fr;
        gap: 36px
    }

    .problema__title,
    .integracao__title {
        font-size: 2.4rem
    }

    .problema__desc,
    .integracao__desc {
        font-size: 1.35rem
    }

    .problema__desc strong,
    .problema__desc.color strong,
    .integracao__desc strong,
    .integracao__desc.color strong {
        font-size: 1.5rem
    }

    .ecossistema__flow {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        padding-bottom: 50px
    }

    .ecossistema-card-wrap:not(:last-child)::after,
    .ecossistema-card-wrap:not(:last-child)::before {
        display: none
    }

    .automacao {
        padding: 90px 0
    }

    .automacao__inner {
        gap: 36px
    }

    .automacao__title {
        font-size: 2.5rem
    }

    .automacao__shape {
        width: 700px;
        height: 700px;
        right: -50px;
        top: 200px
    }

    .api__title {
        font-size: 2.6rem
    }

    .api__inner {
        gap: 20px
    }

    .cta-demo__inner {
        gap: 40px
    }

    .cta-demo__title {
        font-size: 2.8rem
    }
}

/* ─── fullPage.js modo responsivo (mobile ≤ 900px) ─── */
@media (max-width: 900px) {
    .bg-group--hero { background-image: url('../img/paginas/sites-para-imobiliarias/bg/bg-1-mobile.jpg') }
    .bg-group--problema { background-image: url('../img/paginas/sites-para-imobiliarias/bg/bg-2-mobile.jpg') }
    .bg-group--ecossistema { background-image: url('../img/paginas/sites-para-imobiliarias/bg/bg-3-mobile.jpg') }
    .bg-group--automacao { background-image: url('../img/paginas/sites-para-imobiliarias/bg/bg-3-mobile.jpg') }
    .bg-group--integracao { background-image: url('../img/paginas/sites-para-imobiliarias/bg/bg-4-mobile.jpg') }
    .bg-group--api { background-image: url('../img/paginas/sites-para-imobiliarias/bg/bg-5-mobile.jpg') }
    .bg-group--faq { background-image: url('../img/paginas/sites-para-imobiliarias/bg/bg-2-mobile.jpg') }
    .bg-group--contato { background-image: url('../img/paginas/sites-para-imobiliarias/bg/bg-6-mobile.jpg') }

    #fullpage .section:not(.footer-section):not(.hero),
    #fullpage .fp-section:not(.footer-section):not(.hero) {
        padding-top: 80px;
    }

    #fullpage .hero {
        padding-top: 110px !important;
        min-height: unset !important;
    }

    .fp-responsive #fullpage .section,
    .fp-responsive #fullpage .fp-section,
    .fp-responsive .section,
    .fp-responsive .fp-section {
        height: auto !important;
        min-height: unset !important;
    }
}

/* ─── CARROSSEL (Mobile) / GRID (Desktop) ─── */
.exemplos__carousel-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* No desktop (> 900px), escondemos controles de carrossel */
@media (min-width: 901px) {
    .fluxo__controls {
        display: none !important;
    }
}

/* No mobile (≤ 900px), vira carrossel */
@media (max-width: 900px) {
    .ecossistema__flow,
    .automacao__visual {
        display: flex !important;
        flex-direction: row !important;
        width: fit-content !important;
        gap: 28px !important;
        padding: 40px 0 !important;
        transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1) !important;
        cursor: grab;
        justify-content: flex-start !important;
    }

    .ecossistema-card-wrap,
    .automacao-card-wrap {
        flex: 0 0 300px;
        opacity: 0.5;
        transform: scale(0.92);
        transition: all 0.4s ease;
        pointer-events: auto;
    }

    .ecossistema-card-wrap.is-active,
    .automacao-card-wrap.is-active {
        opacity: 1;
        transform: scale(1.02);
    }

    /* Efeito de card em destaque apenas no mobile ativo */
    .ecossistema-card-wrap.is-active article,
    .automacao-card-wrap.is-active article {
        background: #fff !important;
        border-radius: 24px !important;
        padding: 32px 24px !important;
        box-shadow: 0 20px 40px rgba(0,0,0,0.2) !important;
    }

    .ecossistema-card-wrap.is-active article *,
    .automacao-card-wrap.is-active article * {
        color: var(--text-dark) !important;
        -webkit-text-fill-color: var(--text-dark) !important;
        background: none !important;
    }


    .fluxo__controls {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        margin-top: 10px;
        margin-bottom: 40px;
    }

    .fluxo__arrow {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 2px solid rgba(255, 255, 255, .35);
        background: rgba(255, 255, 255, .10);
        color: #fff;
        font-size: 1.2rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background .2s, border-color .2s, opacity .2s;
        flex-shrink: 0;
        line-height: 1;
        padding: 0;
    }

    .fluxo__arrow:hover {
        background: rgba(255, 255, 255, .22);
        border-color: rgba(255, 255, 255, .6);
    }

    .fluxo__dots {
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .fluxo__dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .35);
        transition: background .3s, width .3s;
        cursor: pointer;
        border: none;
        padding: 0;
    }

    .fluxo__dot.is-active {
        background: #fff;
        width: 22px;
        border-radius: 4px;
    }



    .ecossistema-card-wrap.is-active,
    .automacao-card-wrap.is-active {
        opacity: 1;
        transform: scale(1.02);
    }

    /* Efeito de card em destaque apenas no mobile ativo */
    .ecossistema-card-wrap.is-active article,
    .automacao-card-wrap.is-active article {
        background: #fff !important;
        border-radius: 24px !important;
        padding: 32px 24px !important;
        box-shadow: 0 20px 40px rgba(0,0,0,0.2) !important;
    }

    .ecossistema-card-wrap.is-active article *,
    .automacao-card-wrap.is-active article * {
        color: var(--text-dark) !important;
        -webkit-text-fill-color: var(--text-dark) !important;
        background: none !important;
    }
}

@media (max-width:1024px) {
    .hero {
        padding: 50px 0 70px;
        min-height: auto
    }

    .hero__inner {
        gap: 30px
    }

    .hero__headline {
        font-size: 2.2rem;
        line-height: 1
    }

    .hero__subline {
        font-size: 1.1rem
    }

    .hero__content {
        gap: 26px
    }

    .hero__cta-group .btn-primary {
        font-size: 1.3rem;
        padding: 12px 22px
    }

    .problema,
    .integracao {
        padding: 75px 0
    }

    .problema__inner,
    .integracao__inner {
        grid-template-columns: 1fr;
        gap: 36px;
        min-height: auto;
        text-align: center
    }

    .problema__title,
    .integracao__title {
        font-size: 2.2rem
    }

    .problema__desc,
    .integracao__desc {
        font-size: 1.25rem
    }

    .problema__desc strong,
    .problema__desc.color strong,
    .integracao__desc strong,
    .integracao__desc.color strong {
        font-size: 1.4rem
    }

    .problema__visual img,
    .integracao__visual img {
        max-width: 480px;
        margin: 0 auto
    }

    .ecossistema {
        padding: 75px 0
    }

    .ecossistema__title {
        font-size: 2.4rem
    }

    .automacao {
        padding: 75px 0
    }

    .automacao__inner {
        grid-template-columns: 1fr;
        gap: 36px;
        min-height: auto;
        text-align: center
    }

    .automacao__visual {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px
    }

    .automacao__tag {
        font-size: 1rem
    }

    .automacao__title {
        font-size: 2.2rem
    }

    .automacao__desc {
        font-size: 1.15rem;
        line-height: 1.4;
        margin-left: auto;
        margin-right: auto
    }

    .automacao__list {
        margin-left: auto;
        margin-right: auto;
        text-align: left
    }

    .automacao__shape {
        width: 600px;
        height: 600px;
        right: -100px;
        top: 150px
    }

    .api {
        padding: 75px 0;
        overflow: visible !important;
    }

    .api__inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .api__text {
        font-size: 1.25rem;
        line-height: 1.5;
        padding: 0 15px
    }

    .api__visual {
        margin-top: 80px !important;
        min-height: unset !important;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0;
        position: relative !important;
        transform: none !important;
        opacity: 1 !important;
    }

    .api-diagrama {
        width: 100%;
        height: auto !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 60px;
        position: relative;
    }

    .venn-elipse,
    .venn-connector,
    .venn-glow {
        display: none !important;
    }

    .venn-item {
        position: relative !important;
        left: unset !important;
        top: unset !important;
        bottom: unset !important;
        right: unset !important;
        transform: none !important;
        opacity: 1 !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .venn-item:not(:last-child)::after {
        content: "";
        position: absolute;
        bottom: -45px;
        left: 50%;
        width: 1px;
        height: 30px;
        background: rgba(255,255,255,0.2);
        border-left: 1px dashed rgba(255,255,255,0.4);
    }
    .venn-item--esquerda img {
        width: 100px !important;
        height: auto !important;
    }

    .venn-item--centro img {
        width: 45px !important;
        height: auto !important;
    }

    .venn-item--direita img {
        width: 32px !important;
        height: auto !important;
    }

    .venn-item--direita p {
        display: none !important;
    }

    @keyframes enter-top {
        from { transform: translateX(-50%) translateY(-60px); opacity: 0 }
        to { transform: translateX(-50%) translateY(0); opacity: 1 }
    }

    @keyframes enter-bottom {
        from { transform: translateX(-50%) translateY(60px); opacity: 0 }
        to { transform: translateX(-50%) translateY(0); opacity: 1 }
    }

    .faq {
        padding: 75px 0 85px
    }

    .cta-demo {
        padding: 75px 0
    }

    .cta-demo__inner {
        grid-template-columns: 1fr 1fr;
        gap: 36px
    }

    .cta-demo__title {
        font-size: 2.4rem
    }

    .cta-demo__desc {
        font-size: 1.2rem;
        line-height: 1.4
    }
}

@media (max-width:991px) {
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: start
    }

    .hero__content {
        align-items: start
    }

    .hero__cta-group {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start
    }

    .hero__visual {
        justify-content: center;
        margin-top: 0
    }

    .problema__tag,
    .integracao__tag,
    .automacao__tag,
    .api__tag {
        font-size: 1.1rem;
        padding: 8px 20px
    }

    .api__title br,
    .api__text br {
        display: none
    }

    .cta-demo__inner {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center
    }

    .cta-demo__content {
        display: flex;
        flex-direction: column;
        align-items: center
    }
}

@media (max-width:768px) {
    .hero {
        padding: 40px 0 60px
    }

    .hero__headline {
        font-size: 1.95rem;
        line-height: 1.05;
        text-align: center
    }

    .hero__badge {
        font-size: .88rem;
        padding: 7px 16px
    }

    .hero__subline {
        font-size: 1rem;
        line-height: 1.5;
        text-align: center
    }

    .hero__content {
        gap: 22px;
        align-items: center
    }

    .hero__cta-group {
        flex-direction: column;
        align-items: center;
        gap: 14px;
        width: 100%
    }

    .hero__cta-group .btn-primary {
        font-size: 1.2rem;
        padding: 13px 24px;
        width: 100%;
        max-width: 320px;
        text-align: center
    }

    .btn-ghost {
        font-size: 1rem;
        width: 100%;
        max-width: 320px;
        text-align: center;
        justify-content: center
    }

    .hero__gif-wrapper img {
        height: auto;
        width: 100%;
        max-width: 440px;
        margin: 0 auto;
        display: block
    }

    .problema,
    .integracao {
        padding: 60px 0
    }

    .problema__tag,
    .integracao__tag {
        font-size: 1rem;
        padding: 8px 18px;
        margin-bottom: 20px
    }

    .problema__title,
    .integracao__title {
        font-size: 1.9rem;
        margin-bottom: 22px
    }

    .problema__desc,
    .integracao__desc {
        font-size: 1.15rem;
        line-height: 1.45;
        margin-bottom: 20px
    }

    .problema__desc strong,
    .problema__desc.color strong,
    .integracao__desc strong,
    .integracao__desc.color strong {
        font-size: 1.25rem
    }

    .problema__visual img,
    .integracao__visual img {
        border-radius: 18px;
        max-width: 330px;
    }

    .exemplos {
        padding: 44px 0
    }

    .exemplos__title {
        font-size: 1.9rem
    }

    .exemplos__badge {
        font-size: .82rem;
        padding: 8px 18px
    }

    .ecossistema {
        padding: 60px 0
    }

    .ecossistema__flow {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .ecossistema-card {
        padding: 24px 20px;
        border-radius: 16px
    }

    .ecossistema-card__title {
        font-size: 1.8rem
    }

    .ecossistema__title {
        font-size: 1.9rem
    }

    .ecossistema__subtitle {
        font-size: 1.15rem
    }

    .automacao {
        padding: 60px 0
    }

    .automacao__tag {
        font-size: .85rem;
        padding: 7px 14px;
        margin-bottom: 18px
    }

    .automacao__title {
        font-size: 1.85rem;
        margin-bottom: 18px
    }

    .automacao__desc {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 24px
    }

    .automacao__list {
        gap: 10px;
        margin-bottom: 24px
    }

    .automacao__list li {
        font-size: .95rem;
        line-height: 1.4
    }

    .automacao__visual {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .automacao-card {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
        gap: 15px
    }

    .api {
        padding: 60px 0
    }

    .api__title {
        font-size: 1.9rem;
        margin-bottom: 22px
    }

    .api__text {
        font-size: 1.15rem;
        line-height: 1.5;
        padding: 0 10px
    }

    .api__visual {
        height: 260px;
        min-height: auto;
        margin-top: 20px
    }

    .faq {
        padding: 60px 0 70px
    }

    .faq__header {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 30px
    }

    .faq__title {
        font-size: 1.85rem;
        text-align: center
    }

    .faq__box {
        padding: 20px;
        border-radius: 18px
    }

    .faq__question {
        font-size: .95rem;
        height: auto;
        padding: 8px 0
    }

    .faq__icon-plus {
        font-size: 2.2rem
    }

    .cta-demo {
        padding: 60px 0
    }

    .cta-demo__title {
        font-size: 2rem;
        margin-bottom: 22px
    }

    .cta-demo__desc {
        font-size: 1rem;
        line-height: 1.45;
        margin-bottom: 22px
    }

    .cta-demo__whatsapp {
        width: 100%;
        min-height: 50px;
        font-size: 1.1rem;
        padding: 12px 16px
    }

    .cta-demo__form {
        padding: 24px 20px;
        border-radius: 16px;
        text-align: left
    }

    .cta-demo__form-title {
        font-size: 1.45rem;
        margin-bottom: 10px
    }

    .cta-demo__form-subtitle {
        font-size: .9rem;
        margin-bottom: 20px
    }

    .cta-demo__field input,
    .cta-demo__field select {
        height: 46px;
        font-size: .95rem
    }

    .cta-demo__submit {
        min-height: 50px;
        font-size: 1rem
    }

    .cta-demo__orb {
        width: 600px;
        height: 600px;
        right: -200px;
        bottom: -400px;
        border-width: 2px
    }
}

@media (max-width:560px) {
    .hero {
        padding: 32px 0 50px
    }

    .hero__headline {
        font-size: 1.7rem;
        line-height: 1.08
    }

    .hero__badge {
        font-size: .78rem;
        padding: 6px 14px
    }

    .hero__subline {
        font-size: .95rem;
        line-height: 1.5
    }

    .hero__content {
        gap: 18px
    }

    .hero__cta-group .btn-primary {
        font-size: 1.1rem;
        padding: 12px 20px
    }

    .btn-ghost {
        font-size: .9rem
    }

    .problema,
    .integracao {
        padding: 50px 0
    }

    .problema__tag,
    .integracao__tag {
        font-size: .9rem;
        padding: 7px 14px
    }

    .problema__title,
    .integracao__title {
        font-size: 1.7rem
    }

    .problema__desc,
    .integracao__desc {
        font-size: 1.05rem;
        margin-bottom: 16px
    }

    .problema__desc strong,
    .problema__desc.color strong,
    .integracao__desc strong,
    .integracao__desc.color strong {
        font-size: 1.15rem
    }

    .exemplos {
        padding: 38px 0
    }

    .exemplos__title {
        font-size: 1.7rem
    }

    .exemplos__badge {
        font-size: .78rem
    }

    .ecossistema {
        padding: 50px 0
    }

    .ecossistema__title {
        font-size: 1.7rem
    }

    .ecossistema-card__title {
        font-size: 1.5rem
    }

    .ecossistema-card__icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 16px
    }

    .ecossistema-card__icon img {
        width: 34px;
        height: 34px
    }

    .automacao {
        padding: 50px 0
    }

    .automacao__title {
        font-size: 1.7rem
    }

    .automacao__desc {
        font-size: .95rem;
        margin-bottom: 18px
    }

    .automacao__list {
        gap: 8px
    }

    .automacao__list li {
        font-size: .9rem
    }

    .automacao-card-wrap {
        padding: 12px 20px
    }

    .automacao-card__title {
        font-size: 1.35rem
    }

    .automacao__shape {
        width: 300px;
        height: 300px;
        right: -50px;
        top: 150px;
        border-width: 1.5px
    }

    .api {
        padding: 50px 0
    }

    .api__title {
        font-size: 1.7rem;
        margin-bottom: 16px
    }

    .api__text {
        font-size: 1.05rem;
        line-height: 1.45;
        padding: 0
    }

    .api__visual {
        height: 220px;
        margin-top: 10px
    }

    .faq {
        padding: 50px 0 60px
    }

    .faq__title {
        font-size: 1.6rem
    }

    .faq__question {
        font-size: .88rem;
        gap: 14px
    }

    .faq__icon-plus {
        font-size: 1.9rem
    }

    .faq__box {
        padding: 16px;
        border-radius: 14px
    }

    .cta-demo {
        padding: 50px 0
    }

    .cta-demo__title {
        font-size: 1.75rem
    }

    .cta-demo__desc {
        font-size: .95rem
    }

    .cta-demo__whatsapp {
        font-size: 1rem;
        padding: 12px 14px
    }

    .cta-demo__form {
        padding: 20px 16px;
        border-radius: 14px
    }

    .cta-demo__form-title {
        font-size: 1.3rem
    }

    .cta-demo__field input,
    .cta-demo__field select {
        height: 44px;
        font-size: .92rem
    }

    .cta-demo__submit {
        min-height: 48px;
        font-size: .95rem
    }

    .cta-demo__note {
        font-size: .82rem
    }

    .cta-demo__orb {
        width: 420px;
        height: 420px;
        right: -150px;
        bottom: -280px
    }
}

@media (max-width:440px) {
    .hero__headline {
        font-size: 1.5rem
    }

    .hero__badge {
        font-size: .72rem;
        padding: 6px 12px
    }

    .hero__subline {
        font-size: .9rem
    }

    .hero__content {
        gap: 16px
    }

    .hero__cta-group .btn-primary {
        font-size: 1rem;
        padding: 11px 18px
    }

    .btn-ghost {
        font-size: .85rem;
        padding: 8px 14px
    }

    .problema__tag,
    .integracao__tag {
        font-size: .82rem;
        padding: 6px 12px
    }

    .problema__title,
    .integracao__title {
        font-size: 1.55rem
    }

    .problema__desc,
    .integracao__desc {
        font-size: 0.9rem
    }

    .problema__desc strong,
    .problema__desc.color strong,
    .integracao__desc strong,
    .integracao__desc.color strong {
        font-size: 1.1rem
    }

    .automacao__tag {
        font-size: .8rem;
        padding: 6px 12px
    }

    .automacao__title {
        font-size: 1.55rem
    }

    .automacao__desc {
        font-size: .9rem
    }

    .automacao__list li {
        font-size: .85rem
    }

    .api__tag {
        font-size: .8rem;
        padding: 6px 12px;
        margin-bottom: 16px
    }

    .api__title {
        font-size: 1.55rem
    }

    .api__text {
        font-size: 1rem
    }

    .api__visual {
        height: 180px
    }

    .faq__title {
        font-size: 1.45rem
    }

    .faq__question {
        font-size: .83rem;
        gap: 12px
    }

    .faq__icon-plus {
        font-size: 1.7rem
    }

    .faq__box {
        padding: 14px;
        border-radius: 12px;
        gap: 6px
    }

    .cta-demo__title {
        font-size: 1.6rem
    }

    .cta-demo__desc {
        font-size: .9rem
    }

    .cta-demo__form {
        padding: 18px 14px;
        border-radius: 12px
    }

    .cta-demo__form-title {
        font-size: 1.2rem
    }

    .cta-demo__field label {
        font-size: .82rem
    }

    .cta-demo__field input,
    .cta-demo__field select {
        height: 42px;
        font-size: .88rem;
        padding: 0 12px
    }

    .cta-demo__submit {
        min-height: 46px;
        font-size: .9rem
    }

    .cta-demo__note {
        font-size: .78rem
    }

    .cta-demo__orb {
        width: 320px;
        height: 320px;
        right: -130px;
        bottom: -210px;
        border-width: 1.5px
    }
}

@media (max-width:400px) {
    .hero {
        padding: 28px 0 44px
    }

    .hero__headline {
        font-size: 1.38rem;
        letter-spacing: -.01em
    }

    .hero__badge {
        font-size: .68rem;
        padding: 5px 11px
    }

    .hero__subline {
        font-size: .85rem;
        line-height: 1.6
    }

    .hero__content {
        gap: 14px
    }

    .hero__cta-group .btn-primary {
        font-size: .95rem;
        padding: 10px 16px
    }

    .btn-ghost {
        font-size: .82rem;
        padding: 8px 12px
    }

    .problema,
    .integracao {
        padding: 44px 0
    }

    .problema__tag,
    .integracao__tag {
        font-size: .78rem;
        margin-bottom: 16px
    }

    .problema__title,
    .integracao__title {
        font-size: 1.4rem;
        margin-bottom: 18px
    }

    .problema__desc,
    .integracao__desc {
        font-size: .95rem;
        line-height: 1.5;
        margin-bottom: 14px
    }

    .problema__desc strong,
    .problema__desc.color strong,
    .integracao__desc strong,
    .integracao__desc.color strong {
        font-size: 1.05rem
    }

    .exemplos {
        padding: 34px 0
    }

    .exemplos__title {
        font-size: 1.4rem
    }

    .exemplos__badge {
        font-size: .72rem
    }

    .exemplos__icon {
        width: 34px;
        height: 34px
    }

    .ecossistema {
        padding: 44px 0
    }

    .ecossistema__title {
        font-size: 1.4rem
    }

    .ecossistema-card {
        padding: 18px 14px
    }

    .ecossistema-card__title {
        font-size: 1.3rem
    }

    .ecossistema-card__desc {
        font-size: 0.9rem
    }

    .automacao {
        padding: 44px 0
    }

    .automacao__tag {
        font-size: .75rem;
        padding: 5px 10px;
        margin-bottom: 14px
    }

    .automacao__title {
        font-size: 1.4rem;
        margin-bottom: 16px
    }

    .automacao__desc {
        font-size: .85rem;
        line-height: 1.55;
        margin-bottom: 16px
    }

    .automacao__list {
        gap: 7px;
        margin-bottom: 16px
    }

    .automacao__list li {
        font-size: .8rem;
        line-height: 1.45;
        padding-left: 24px
    }

    .automacao__list li::before {
        width: 16px;
        height: 16px;
        font-size: .6rem
    }

    .automacao__shape {
        width: 160px;
        height: 160px;
        right: -20px;
        top: 120px;
        border-width: 1px
    }

    .api {
        padding: 44px 0
    }

    .api__tag {
        font-size: .75rem;
        margin-bottom: 14px
    }

    .api__title {
        font-size: 1.4rem;
        margin-bottom: 16px
    }

    .api__text {
        font-size: .95rem
    }

    .api__visual {
        height: 160px
    }

    .faq {
        padding: 44px 0 52px
    }

    .faq__header {
        gap: 8px;
        margin-bottom: 24px
    }

    .faq__title {
        font-size: 1.3rem
    }

    .faq__question {
        font-size: .78rem;
        gap: 10px
    }

    .faq__icon-plus {
        font-size: 1.5rem
    }

    .faq__box {
        padding: 12px;
        border-radius: 10px
    }

    .faq__answer p {
        font-size: .82rem
    }

    .cta-demo {
        padding: 44px 0
    }

    .cta-demo__title {
        font-size: 1.45rem;
        margin-bottom: 18px
    }

    .cta-demo__desc {
        font-size: .85rem;
        line-height: 1.5;
        margin-bottom: 18px
    }

    .cta-demo__whatsapp {
        font-size: .9rem;
        padding: 10px 12px;
        gap: 8px
    }

    .cta-demo__form {
        padding: 16px 12px;
        border-radius: 10px
    }

    .cta-demo__form-title {
        font-size: 1.1rem
    }

    .cta-demo__form-subtitle {
        font-size: .82rem
    }

    .cta-demo__field {
        gap: 6px;
        margin-bottom: 12px
    }

    .cta-demo__field label {
        font-size: .78rem
    }

    .cta-demo__field input,
    .cta-demo__field select {
        height: 40px;
        font-size: .85rem;
        padding: 0 10px
    }

    .cta-demo__submit {
        min-height: 44px;
        font-size: .85rem
    }

    .cta-demo__note {
        font-size: .75rem
    }

    .cta-demo__orb {
        width: 260px;
        height: 260px;
        right: -110px;
        bottom: -170px;
        border-width: 1px
    }
}
/* ─── AJUSTES DE ALTURA (Notebooks / Zoom 125%) ─── */
@media (max-height: 900px) and (min-width: 901px) {
    :root {
        --fs-title: 2.6rem;
        --fs-sub: 1.15rem;
    }
    .hero__headline { font-size: 2.6rem }
    .hero__subline { font-size: 1.2rem }
    .hero__gif { height: 380px }
    .problema__title, .automacao__title, .api__title, .faq__title, .cta-demo__title { font-size: 2.4rem }
}

@media (max-height: 768px) and (min-width: 901px) {
    :root {
        --fs-title: 2.2rem;
        --fs-sub: 1.05rem;
    }
    .hero__headline { font-size: 2.2rem }
    .hero__gif { height: 320px }
    #fullpage .section:not(.footer-section),
    #fullpage .fp-section:not(.footer-section) { padding-top: 100px }
}

@media (max-height: 650px) and (min-width: 901px) {
    :root {
        --fs-title: 1.9rem;
        --fs-sub: 0.95rem;
    }
    .hero__headline { font-size: 1.9rem }
    .hero__gif { height: 280px }
    #fullpage .section:not(.footer-section),
    #fullpage .fp-section:not(.footer-section) { padding-top: 80px }
}
