@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/gerente-virtual/bg/bg-1.jpg');
}

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

/* ── bg-group--exemplos (seção 3) ── */
.bg-group--exemplos {
    background-image: url('../img/paginas/gerente-virtual/bg/bg-3.jpg');
}

/* ── bg-group--recursos (seção 4) ── */
.bg-group--recursos {
    background-image: url('../img/paginas/gerente-virtual/bg/bg-4.jpg');
}

/* ── bg-group--automacao (seção 5) ── */
.bg-group--automacao {
    background-image: url('../img/paginas/gerente-virtual/bg/bg-5.jpg');
}

/* ── bg-group--logs (seção 6) ── */
.bg-group--logs {
    background-image: url('../img/paginas/gerente-virtual/bg/bg-6.jpg');
}

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

/* ── bg-group--contato (seção 8 + footer) ── */
.bg-group--contato {
    background-image: url('../img/paginas/gerente-virtual/bg/bg-8.jpg');
}

/* ─── fullPage.js modo responsivo (mobile ≤ 900px) ─── */
@media (max-width: 900px) {
    .bg-group--hero { background-image: url('../img/paginas/gerente-virtual/bg/bg-1-mobile.jpg') }
    .bg-group--problema { background-image: url('../img/paginas/gerente-virtual/bg/bg-2-mobile.jpg') }
    .bg-group--exemplos { background-image: url('../img/paginas/gerente-virtual/bg/bg-3-mobile.jpg') }
    .bg-group--recursos { background-image: url('../img/paginas/gerente-virtual/bg/bg-4-mobile.jpg') }
    .bg-group--automacao { background-image: url('../img/paginas/gerente-virtual/bg/bg-5-mobile.jpg') }
    .bg-group--logs { background-image: url('../img/paginas/gerente-virtual/bg/bg-3-mobile.jpg') }
    .bg-group--faq { background-image: url('../img/paginas/gerente-virtual/bg/bg-2-mobile.jpg') }
    .bg-group--contato { background-image: url('../img/paginas/gerente-virtual/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;
    }
}

/* 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 ══════════════════════════════ */
.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-text);
    -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;
    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-bottom: -60px
}

.hero__gif {
    display: block;
    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 ══════════════════════════════ */
.problema {
    position: relative;
    overflow: hidden;
    padding: 95px 0
}

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

.problema__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    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: 30px
}

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

.problema__title strong {
    font-weight: 600;
    color: var(--color-blue-light)
}

.problema__desc {
    font-size: 1.55rem;
    line-height: 1;
    font-weight: 300;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 30px
}

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

.problema__desc.color strong {
    color: var(--color-blue-light);
    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: 100%;
    max-width: 600px;
    display: block;
    border-radius: 30px;
    box-shadow: 0 12px 32px rgba(8, 20, 49, .18)
}

/* ═══════════════════════════════ EXEMPLOS ══════════════════════════════ */
.exemplos {
    position: relative;
    overflow: hidden;
    padding: 60px 0
}

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

.exemplos__header {
    text-align: center;
    width: 100%;
    padding: 30px;
    background: var(--gradient-primary);
    border-radius: 25px;
}

.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: 30px
}

.exemplos__icon {
    width: 50px;
    height: 50px;
    margin: 16px auto;
    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, 3.6rem);
    line-height: .98;
    font-weight: 300;
    color: var(--text-white);
    letter-spacing: -.03em;
    margin: 0 auto
}

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

/* ═══════════════════════════════ RECURSOS ══════════════════════════════ */
.recursos {
    position: relative;
    padding: 110px 0 120px;
    overflow: hidden
}

.recursos__wrap {
    display: flex;
    flex-direction: column;
    gap: 45px
}

.recursos__top {
    background: var(--text-white);
    border-radius: 25px;
    padding: 55px 45px;
    display: grid;
    grid-template-columns: 0.6fr 1fr;
    gap: 34px;
    align-items: center;
    margin-top: 45px;
}

.recursos__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px
}

.recursos__title {
    font-size: clamp(2rem, 4vw, 2.2rem);
    line-height: 1;
    font-weight: 400;
    color: var(--text-mid);
    margin-bottom: 25px
}

.recursos__title .grad-purple {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.recursos__title .grad {
    background: var(--text-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.recursos__desc {
    font-size: 1rem;
    line-height: 1;
    color: var(--text-mid);
}

.recursos__image {
    display: flex;
    justify-content: center;
    align-items: center
}

.recursos__image img {
    width: 100%;
    height: 220px;
    display: block;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, .08)
}

.recurso-card {
    /* background e border gerenciados pelo .fluxo-card pai */
    background: transparent;
    border-radius: inherit;
    padding: 0;
    box-shadow: none;
    border: none;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* ícone do card */
.recurso-card__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    border-radius: 4px;
    background: rgba(255, 255, 255, .18);
    color: var(--text-white);
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 20px;
    height: 55px;
    transition: background .4s;
}

/* ícone — estado ativo: fundo azul claro */
.fluxo-card.is-active .recurso-card__tag {
    background: var(--color-info-bg);
}

.recurso-card__tag img {
    height: 32px;
    width: auto;
    display: block;
}

/* título — branco inativo, escuro ativo */
.recurso-card__title {
    font-size: 1.5rem;
    line-height: 1.1;
    font-weight: 600;
    color: rgba(255, 255, 255, .95);
    text-align: center;
    margin-bottom: 14px;
    transition: color .4s;
}

.fluxo-card.is-active .recurso-card__title {
    color: var(--text-dark) !important;
}

/* descrição — branca translúcida inativa, cinza escuro ativa */
.recurso-card__desc {
    text-align: center;
    font-size: .92rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, .5);
    width: 100%;
    transition: color .4s;
}

.fluxo-card.is-active .recurso-card__desc {
    color: var(--text-mid) !important;
}

/* ═══════════════════════════════ AUTOMAÇÃO ══════════════════════════════ */
.automacao {
    position: relative;
    overflow: hidden;
    padding: 110px 0
}

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

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

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

.automacao__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: 45px
}

.automacao__title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    line-height: .98;
    font-weight: 300;
    color: var(--text-white);
    margin-bottom: 45px;
    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);
    max-width: 430px;
}

.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: flex;
    justify-content: center;
    align-items: center;
    z-index: 3
}

.automacao__visual img {
    max-width: 100%;
    height: 500px;
    display: block;
    border-radius: 10px;
    box-shadow: 0 12px 32px rgba(8, 20, 49, .18)
}

.automacao__shape {
    position: absolute;
    right: 80px;
    top: 400px;
    width: 880px;
    height: 880px;
    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%)
}

/* ═══════════════════════════════ LOGS ══════════════════════════════ */
.logs {
    position: relative;
    overflow: hidden;
    padding: 95px 0
}

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

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

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

.logs__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: 45px
}

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

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

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

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

.logs__visual img {
    height: 500px;
    display: block;
    border-radius: 30px;
    box-shadow: 0 12px 32px rgba(8, 20, 49, .18)
}

/* ═══════════════════════════════ FAQ ══════════════════════════════ */
.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: rgba(255, 255, 255, .22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-white);
    font-size: 1.4rem
}

.faq__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--text-white);
    background: var(--gradient-primary);
    -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-blue);
    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 ══════════════════════════════ */
.cta-demo {
    position: relative;
    overflow: hidden;
    display: flex;
    padding: 110px 0 90px;
    align-items: center;
}

.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.7rem);
    line-height: 1;
    font-weight: 300;
    color: var(--text-white);
    margin-bottom: 34px
}

.cta-demo__title strong {
    font-weight: 700;
    background: var(--color-blue-light);
    -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-dark)
}

.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)
}

/* ═══════════════════════════════ RESPONSIVE ══════════════════════════════ */
@media (max-width:1199px) {
    .hero__headline { font-size: 2.5rem; line-height: 1 }
    .hero__subline { font-size: 1.25rem }
    .hero__gif { height: 230px }
    .hero__inner { gap: 40px }
    .problema__inner { grid-template-columns: 1fr 1fr; gap: 36px }
    .problema__title { font-size: 2.4rem }
    .problema__desc { font-size: 1.35rem }
    .exemplos__title { font-size: 2.6rem }
    .recursos__cards { grid-template-columns: repeat(3, 1fr); gap: 24px }
    .recurso-card { padding: 28px 22px 36px }
    .recurso-card__title { font-size: 1.55rem }
    .automacao__inner { gap: 40px }
    .automacao__title { font-size: 2.5rem }
    .logs__inner { gap: 50px }
    .logs__title { font-size: 2.4rem }
    .cta-demo__inner { gap: 50px }
    .cta-demo__title { font-size: 3.2rem }
}

/* ─── CARROSSEL — padrão assinatura-digital/sites-para-imobiliarias ─── */
.exemplos__carousel-wrap {
    position: relative;
    width: 100%;
    overflow: visible;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

/* Stage: viewport do carrossel */
.fluxo__cards {
    position: relative;
    overflow: visible;
    width: 100%;
    padding: 24px 0 32px;
}

/* Track: flex, movido por 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 400px;
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 32px 28px 28px;
    border-radius: 20px;
    min-height: 280px;
    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;
}

.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.is-active .recurso-card__title {
    color: var(--text-dark) !important;
}

.fluxo-card.is-active .recurso-card__desc {
    color: var(--text-mid) !important;
}

/* Controls */
.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;
}

/* Mobile: card menor */
@media (max-width: 900px) {
    .fluxo-card {
        flex: 0 0 clamp(280px, 85vw, 330px);
        padding: 32px 24px;
        border-radius: 24px;
        min-height: auto;
        align-items: center;
        text-align: center;
    }
}

/* ════════════════════════════════════════════════════════════════════════════
   ALTURA (Notebooks, 125% Zoom, Telas Pequenas)
   Cobre notebooks com zoom 125 % / 150 % e telas com pouca altura vertical.
════════════════════════════════════════════════════════════════════════════ */

/* Nível 1 — ≤ 900px de altura (Mac 1470×956, 1920×1080@125% OS) */
@media (max-height: 900px) and (min-width: 901px) {
    :root {
        --fs-title : clamp(1.9rem, 2.3vw, 2.6rem);
        --fs-sub   : clamp(.9rem, 1.1vw, 1.1rem);
        --fs-badge : 13px;
        --fs-body  : .88rem;
    }
    #fullpage .section:not(.footer-section),
    #fullpage .fp-section:not(.footer-section) { padding-top: 80px !important }
    
    .hero { padding-bottom: 60px }
    .hero__inner { gap: 40px }
    .hero__content { gap: 22px }
    .hero__cta-group { gap: 14px }
    
    .problema { padding: 55px 0 }
    .automacao { padding: 55px 0 }
    .logs { padding: 55px 0 }
    .recursos { padding: 80px 0 50px }
    .cta-demo__inner { gap: 40px }
}

/* Nível 2 — ≤ 768px de altura (1366×768 nativo, 1920×1080@125% zoom) */
@media (max-height: 768px) and (min-width: 901px) {
    :root {
        --fs-title : clamp(1.6rem, 2vw, 2.2rem);
        --fs-sub   : clamp(.82rem, 1vw, 1rem);
        --fs-badge : 12px;
        --fs-body  : .83rem;
    }
    #fullpage .section:not(.footer-section),
    #fullpage .fp-section:not(.footer-section) { padding-top: 60px !important }
    
    .hero { padding-bottom: 44px }
    .hero__inner { gap: 30px }
    .hero__content { gap: 16px }
    .hero__cta-group { gap: 10px }
    .hero__cta-group .btn-primary { font-size: 1.05rem; padding: 10px 18px }
    .recurso-card__title { font-size: 1.3rem }
    .recurso-card__desc { font-size: 0.95rem }
    .problema { padding: 38px 0 }
    .automacao { padding: 38px 0 }
    .logs { padding: 38px 0 }
    .recursos { padding: 58px 0 45px }
    .logs__visual img {
        height: 400px;
    }
    .automacao__visual img {
        height: 400px;
    }
}

/* Nível 3 — ≤ 650px de altura (1366×768@125% zoom → 614px CSS) */
@media (max-height: 650px) and (min-width: 901px) {
    :root {
        --fs-title : clamp(1.35rem, 1.8vw, 1.9rem);
        --fs-sub   : clamp(.75rem, .9vw, .9rem);
        --fs-badge : 11px;
        --fs-body  : .78rem;
    }
    #fullpage .section:not(.footer-section),
    #fullpage .fp-section:not(.footer-section) { padding-top: 50px !important }
    
    .hero { padding-bottom: 36px }
    .hero__badge { display: none }
    .hero__inner { gap: 22px }
    .hero__content { gap: 12px }
    .hero__cta-group { gap: 8px }
    .recurso-card__title { font-size: 1.1rem }
    .recurso-card__desc { font-size: 0.85rem }
    .logs__visual img {
    height: 400px;
    }
    .automacao__visual img {
        height: 400px;
    }
}

/* ── Aplica as variáveis a todos os títulos e sublines ── */
.hero__headline,
.problema__title,
.exemplos__title,
.recursos__title,
.automacao__title,
.logs__title,
.faq__title,
.cta-demo__title {
    font-size: var(--fs-title) !important;
}

.hero__subline,
.problema__desc,
.recursos__desc,
.automacao__desc,
.logs__desc,
.cta-demo__desc {
    font-size: var(--fs-sub) !important;
}

.problema__tag,
.exemplos__badge,
.automacao__tag,
.logs__tag {
    font-size: var(--fs-badge) !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__gif { height: 200px }
    .hero__content { gap: 26px }
    .hero__cta-group .btn-primary { font-size: 1.3rem; padding: 12px 22px }
    .problema { padding: 75px 0 }
    .problema__inner { grid-template-columns: 1fr; gap: 36px; min-height: auto; text-align: center }
    .problema__title { font-size: 2.2rem }
    .problema__visual img { max-width: 480px; margin: 0 auto }
    .exemplos { padding: 50px 0 }
    .exemplos__title { font-size: 2.2rem }
    .recursos { padding: 75px 0 85px }
    .fluxo__track { grid-template-columns: repeat(2, 1fr); gap: 28px }
    .recursos__top { padding: 60px 40px }
    .automacao { padding: 75px 0 }
    .automacao__inner { grid-template-columns: 1fr; gap: 36px; text-align: center }
    .automacao__title { font-size: 2.2rem }
    .automacao__shape { width: 500px; height: 500px; right: -100px; bottom: -100px }
    .logs { padding: 75px 0 }
    .logs__inner {
        gap: 36px;
        text-align: center;
        display: flex;
        flex-direction: column-reverse;
    }
    .logs__title { font-size: 2.2rem }
    .logs__visual img { height: 400px; margin: 0 auto }
    .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: center }
    .hero__cta-group { flex-direction: row; flex-wrap: wrap; justify-content: flex-start }
    .hero__visual { justify-content: center; margin-top: 50px; margin-bottom: 0 }
    .hero__gif { height: 240px; width: auto; max-width: 90% }
    .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__visual { margin-top: 20px }
    .hero__gif { height: auto; width: 100%; max-width: 440px }
    .problema { padding: 60px 0 }
    .problema__tag { font-size: 1rem; padding: 8px 18px; margin-bottom: 20px }
    .problema__title { font-size: 1.9rem; margin-bottom: 22px }
    .problema__desc { font-size: 1.15rem; line-height: 1.45; margin-bottom: 20px }
    .exemplos { padding: 44px 0 }
    .exemplos__title { font-size: 1.9rem }
    .exemplos__badge { font-size: .82rem; padding: 8px 18px }
    .exemplos__icon { width: 40px; height: 40px }
    .recursos { padding-top: 0 !important }
    .recursos__top { padding: 40px 24px; grid-template-columns: 1fr }
    .fluxo__track { grid-template-columns: 1fr; gap: 28px; display: flex !important }
    .recurso-card { padding: 26px 20px 32px; border-radius: 18px; text-align: center; align-items: center }
    .recurso-card__title { font-size: 1.4rem }
    .recurso-card__desc { font-size: 1rem; text-align: center }
    .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__shape { width: 340px; height: 340px; right: -120px; bottom: -80px; border-width: 2px }
    .logs { padding: 60px 0 }
    .logs__tag { font-size: 1rem; padding: 8px 18px; margin-bottom: 20px }
    .logs__title { font-size: 1.9rem; margin-bottom: 22px }
    .logs__desc { font-size: 1.15rem; line-height: 1.45 }
    .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 }
    .automacao__visual img {
        height: 400px;
    }
}

@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 { padding: 44px 0 }
    .problema__title { font-size: 1.4rem; margin-bottom: 18px }
    .problema__desc { font-size: .95rem; line-height: 1.5; margin-bottom: 14px }
    .exemplos { padding: 34px 0 }
    .exemplos__title { font-size: 1.4rem }
    .recursos { padding: 44px 0 52px }
    .recurso-card { padding: 18px 14px 24px; border-radius: 12px }
    .recurso-card__title { font-size: 1.2rem }
    .automacao { padding: 44px 0 }
    .automacao__title { font-size: 1.4rem; margin-bottom: 16px }
    .automacao__shape { width: 160px; height: 160px; right: -60px; bottom: -40px; border-width: 1px }
    .logs { padding: 44px 0 }
    .logs__title { font-size: 1.4rem }
    .logs__desc { font-size: .95rem }
    .faq { padding: 44px 0 52px }
    .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__form { padding: 16px 12px; border-radius: 10px }
    .cta-demo__form-title { font-size: 1.1rem }
    .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__orb { width: 260px; height: 260px; right: -110px; bottom: -170px; border-width: 1px }
}
