@import url('style.css');

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

/* Nível 1 — notebooks e telas com até 900px de altura */
@media (max-height: 900px) and (min-width: 901px) {
    :root {
        --contato-fs-title: clamp(1.9rem, 2.3vw, 2.6rem);
        --contato-fs-sub: clamp(.9rem, 1.1vw, 1.1rem);
        --contato-fs-badge: 13px;
        --contato-fs-body: .88rem;
        --contato-fs-action: 1.35rem;
    }
}

/* Nível 2 — notebooks baixos, 1366x768 e zoom de navegador */
@media (max-height: 768px) and (min-width: 901px) {
    :root {
        --contato-fs-title: clamp(1.6rem, 2vw, 2.2rem);
        --contato-fs-sub: clamp(.82rem, 1vw, 1rem);
        --contato-fs-badge: 12px;
        --contato-fs-body: .83rem;
        --contato-fs-action: 1.12rem;
    }
}

/* Nível 3 — viewport desktop muito baixo */
@media (max-height: 650px) and (min-width: 901px) {
    :root {
        --contato-fs-title: clamp(1.35rem, 1.8vw, 1.9rem);
        --contato-fs-sub: clamp(.75rem, .9vw, .9rem);
        --contato-fs-badge: 11px;
        --contato-fs-body: .78rem;
        --contato-fs-action: 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/contato/bg/bg-1.jpg');
    /* placeholder usando bg da assinatura digital */
}

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



/* ── bg-group--footer (seção 4) ── */
.bg-group--footer {
    background-image: url('../img/paginas/contato/bg/bg-1.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;
}

/* ─── fullPage.js modo responsivo (mobile ≤ 900px) ─── */
/* Quando fullPage entra em modo responsivo, as seções scrollam livremente */
@media (max-width: 900px) {

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

    #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;
    }

    .hero,
    .problema {
        height: auto !important;
        min-height: unset !important;
        overflow: hidden !important;
    }

    .fp-overflow {
        background: transparent;
    }

    .bg-group {
        transition: opacity .2s ease;
    }

    #fp-nav {
        display: none !important;
    }

    html,
    body {
        overflow-x: hidden !important;
    }

    .site-wrapper {
        overflow-x: hidden;
    }
}

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

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

.hero__headline,
.problema__title,
.support-banner__title {
    font-size: var(--contato-fs-title) !important;
}

.hero__subline,
.cta-demo__form-subtitle {
    font-size: var(--contato-fs-sub) !important;
}

.hero__badge,
.problema__tag {
    font-size: var(--contato-fs-badge) !important;
}

.cta-demo__field label,
.cta-demo__field input,
.cta-demo__field select,
.cta-demo__note {
    font-size: var(--contato-fs-body) !important;
}

.cta-demo__whatsapp,
.problema_email-contato,
.support-banner__btn {
    font-size: var(--contato-fs-action) !important;
}

.hero {
    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(--color-blue-light);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600
}

.hero__subline {
    font-size: 1.4rem;
    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.6rem;
    font-weight: 500;
    padding: 14px 30px;
    border-radius: 9px
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-white) !important;
    text-decoration: none;
    padding: 8px 20px;
    border: 1px solid var(--border-subtle);
    border-radius: 9px;
    background: rgba(255, 255, 255, .1);
    transition: var(--transition);
    white-space: nowrap
}

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

.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: 1rem;
    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
}

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

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

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

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

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

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

.problema__visual img {
    width: 320px;
    border-radius: 30px;
    box-shadow: 0 12px 32px rgba(8, 20, 49, .18)
}

.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);
    margin-bottom: 20px;
}

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

.cta-demo__whatsapp-icon {
    width: auto;
    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__whatsapp-icon svg {
    width: 100%;
    height: 100%;
    display: block
}
.problema__email {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 50px 0
}

.problema__email img {
    width: 45px
}

.problema__email p {
    font-size: 1.8rem;
    color: var(--text-mid)
}

.problema_email-contato {
    text-decoration: none;
    color: var(--text-white);
    font-size: 1.8rem;
    padding: 5px 15px;
    background: var(--gradient-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.support-banner {
    background: var(--gradient-blue-v-inv, linear-gradient(180deg, #1640a3, #0a2569));
    border-radius: 20px;
    padding: 35px 40px;
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(8, 20, 49, .2);
}

.support-banner__title {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    line-height: 1.1;
    font-weight: 500;
    color: var(--text-white);
    margin: 0;
}

.support-banner__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 46px;
    padding: 3px 22px;
    border-radius: 8px;
    background: var(--color-gray-dark, #131d2b);
    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);
}

.support-banner__btn:hover {
    background: #0f1621;
    transform: translateY(-2px);
}

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

.support-banner__icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

@media (max-width:1400px) {
    .hero__inner {
        gap: 60px
    }

    .hero__headline {
        font-size: 3rem
    }

    .hero__subline {
        font-size: 1.55rem
    }

    .problema__inner {
        gap: 40px
    }

    .problema__title {
        font-size: 3rem
    }
}

/* Breakpoint de largura para notebooks grandes, seguindo o padrão das demais páginas */
@media (max-width: 1470px) and (min-width: 1401px) {
    .hero__headline,
    .problema__title,
    .support-banner__title {
        font-size: clamp(2rem, 2.5vw, 2.8rem) !important;
    }
}

/* ── NÍVEL 1: espaçamentos para telas até 900px de altura ── */
@media (max-height: 900px) and (min-width: 901px) {
    #fullpage .section:not(.footer-section),
    #fullpage .fp-section:not(.footer-section) {
        padding-top: 80px !important;
    }

    .hero {
        padding-bottom: 52px;
    }

    .hero__inner {
        gap: 46px;
    }

    .hero__content {
        gap: 22px;
    }

    .cta-demo__form {
        padding: 26px;
    }

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

    .cta-demo__form-subtitle {
        margin-bottom: 18px;
    }

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

    .cta-demo__field input,
    .cta-demo__field select {
        height: 42px;
    }

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

    .problema {
        padding: 55px 0;
    }

    .problema__inner {
        gap: 34px;
        min-height: 420px;
    }

    .problema__tag {
        margin-bottom: 18px;
    }

    .problema__title {
        margin-bottom: 20px;
    }

    .problema__visual img {
        width: 280px;
    }

    .support-banner {
        padding: 26px 32px;
        gap: 16px;
        margin-top: 18px;
    }
}

/* ── NÍVEL 2: espaçamentos para telas até 768px de altura ── */
@media (max-height: 768px) and (min-width: 901px) {
    #fullpage .section:not(.footer-section),
    #fullpage .fp-section:not(.footer-section) {
        padding-top: 60px !important;
    }

    .hero {
        padding-bottom: 36px;
    }

    .hero__inner {
        gap: 32px;
    }

    .hero__content {
        gap: 16px;
    }

    .hero__badge {
        padding: 5px 16px;
    }

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

    .cta-demo__form-title {
        font-size: 1.18rem;
        margin-bottom: 8px;
    }

    .cta-demo__form-subtitle {
        margin-bottom: 14px;
    }

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

    .cta-demo__field input,
    .cta-demo__field select {
        height: 38px;
        padding: 0 12px;
    }

    .cta-demo__submit {
        min-height: 42px;
        margin-top: 8px;
    }

    .cta-demo__note {
        margin-top: 10px;
    }

    .problema {
        padding: 38px 0;
    }

    .problema__inner {
        gap: 24px;
        min-height: 340px;
    }

    .problema__tag {
        padding: 5px 16px;
        margin-bottom: 14px;
    }

    .problema__title {
        margin-bottom: 16px;
    }

    .problema__visual img {
        width: 230px;
        border-radius: 22px;
    }

    .cta-demo__whatsapp,
    .problema_email-contato,
    .support-banner__btn {
        min-height: 40px;
        padding: 3px 16px;
    }

    .cta-demo__whatsapp-icon,
    .support-banner__icon {
        height: 24px;
    }

    .support-banner {
        padding: 20px 26px;
        gap: 12px;
        margin-top: 14px;
    }
}

/* ── NÍVEL 3: espaçamentos para telas até 650px de altura ── */
@media (max-height: 650px) and (min-width: 901px) {
    #fullpage .section:not(.footer-section),
    #fullpage .fp-section:not(.footer-section) {
        padding-top: 50px !important;
    }

    .hero {
        padding-bottom: 26px;
    }

    .hero__inner {
        gap: 24px;
    }

    .hero__content {
        gap: 12px;
    }

    .hero__badge {
        display: none;
    }

    .cta-demo__form {
        padding: 16px;
    }

    .cta-demo__form-title {
        font-size: 1rem;
        margin-bottom: 6px;
    }

    .cta-demo__form-subtitle {
        margin-bottom: 10px;
    }

    .cta-demo__field {
        gap: 5px;
        margin-bottom: 7px;
    }

    .cta-demo__field input,
    .cta-demo__field select {
        height: 34px;
    }

    .cta-demo__submit {
        min-height: 38px;
        font-size: .84rem;
    }

    .cta-demo__note {
        display: none;
    }

    .problema {
        padding: 28px 0;
    }

    .problema__inner {
        gap: 18px;
        min-height: 300px;
    }

    .problema__tag {
        display: none;
    }

    .problema__title {
        margin-bottom: 12px;
    }

    .problema__visual img {
        width: 190px;
        border-radius: 18px;
    }

    .cta-demo__whatsapp,
    .problema_email-contato,
    .support-banner__btn {
        min-height: 36px;
        padding: 2px 14px;
    }

    .support-banner {
        padding: 16px 22px;
        gap: 10px;
        margin-top: 10px;
    }
}

@media (max-width:1199px) {
    .hero__inner {
        gap: 40px
    }

    .hero__headline {
        font-size: 2.6rem
    }

    .hero__subline {
        font-size: 1.45rem
    }

    .hero__badge {
        font-size: 1.2rem;
        padding: 6px 28px
    }

    .cta-demo__form {
        padding: 28px
    }

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

    .problema {
        padding: 80px 0
    }

    .problema__inner {
        gap: 36px
    }

    .problema__title {
        font-size: 2.6rem;
        margin-bottom: 36px
    }

    .problema__tag {
        font-size: 1.15rem;
        padding: 8px 20px
    }

    .cta-demo__whatsapp {
        font-size: 2rem;
        padding: 7px 24px
    }

    .cta-demo__whatsapp-icon {
        height: 36px
    }

    .problema__email {
        margin: 36px 0
    }

    .problema__email p {
        font-size: 1.55rem
    }

    .problema_email-contato {
        font-size: 1.55rem
    }

    .funcionamento {
        padding: 90px 0
    }

    .funcionamento__title {
        font-size: 2.6rem
    }
}

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

    .hero__inner {
        gap: 30px
    }

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

    .hero__subline {
        font-size: 1.3rem;
        line-height: 1.35
    }

    .hero__badge {
        font-size: 1.1rem;
        padding: 6px 24px
    }

    .hero__content {
        gap: 28px
    }

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

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

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

    .cta-demo__field input,
    .cta-demo__field select {
        height: 46px
    }

    .problema {
        padding: 70px 0
    }

    .problema__inner {
        gap: 36px;
        min-height: auto
    }

    .problema__title {
        font-size: 2.3rem;
        margin-bottom: 28px
    }

    .problema__tag {
        font-size: 1.05rem;
        padding: 8px 18px
    }

    .problema__visual img {
        border-radius: 20px
    }

    .cta-demo__whatsapp {
        font-size: 1.8rem;
        padding: 7px 22px
    }

    .cta-demo__whatsapp-icon {
        height: 32px
    }

    .problema__email {
        gap: 20px;
        margin: 28px 0
    }

    .problema__email img {
        width: 36px
    }

    .problema__email p {
        font-size: 1.4rem
    }

    .problema_email-contato {
        font-size: 1.4rem
    }

    .funcionamento {
        padding: 75px 0
    }

    .funcionamento__title {
        font-size: 2.3rem
    }

    .funcionamento__header {
        gap: 28px
    }
}

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

    .hero__content {
        align-items: flex-start
    }

    .hero__headline {
        font-size: 2.1rem;
        line-height: 1.02
    }

    .hero__subline {
        font-size: 1.2rem
    }

    .cta-demo__form-wrap {
        width: 100%;
        max-width: 560px
    }

    .problema__title {
        font-size: 2.1rem
    }

    .cta-demo__whatsapp {
        font-size: 1.65rem
    }

    .funcionamento__title {
        font-size: 2.1rem
    }
}

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

    .hero__badge {
        font-size: .95rem;
        padding: 6px 18px
    }

    .hero__headline {
        font-size: 1.9rem;
        line-height: 1.05
    }
    .problema__inner {
        grid-template-columns: 1fr;
        gap: 36px;
        min-height: auto
    }


    .hero__subline {
        font-size: 1.1rem;
        line-height: 1.45
    }

    .hero__content {
        gap: 22px
    }

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

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

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

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

    .cta-demo__form-subtitle {
        font-size: .88rem;
        margin-bottom: 18px
    }

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

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

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

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

    .problema {
        padding: 60px 0
    }

    .problema__tag {
        font-size: .95rem;
        padding: 7px 16px;
        margin-bottom: 20px
    }

    .problema__title {
        font-size: 1.85rem;
        margin-bottom: 24px
    }

    .cta-demo__whatsapp {
        font-size: 1.4rem;
        padding: 8px 18px;
        justify-content: center
    }

    .cta-demo__whatsapp-icon {
        height: 28px
    }

    .problema__email {
        gap: 14px;
        margin: 24px 0
    }

    .problema__email img {
        width: 32px
    }

    .problema__email p {
        font-size: 1.25rem
    }

    .problema_email-contato {
        font-size: 1.2rem;
        padding: 5px 12px;
        border-radius: 6px
    }

    .problema__visual img {
        border-radius: 16px
    }

    .funcionamento {
        padding: 60px 0
    }

    .funcionamento__title {
        font-size: 1.85rem;
        line-height: 1.1
    }

    .funcionamento__header {
        gap: 24px
    }
}

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

    .hero__badge {
        font-size: .82rem;
        padding: 5px 14px
    }

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

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

    .hero__content {
        gap: 18px
    }

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

    .btn-ghost {
        font-size: .88rem;
        padding: 7px 14px
    }

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

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

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

    .cta-demo__field {
        gap: 7px;
        margin-bottom: 13px
    }

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

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

    .problema {
        padding: 50px 0
    }

    .problema__tag {
        font-size: .85rem;
        padding: 6px 14px
    }

    .problema__title {
        font-size: 1.65rem;
        margin-bottom: 20px
    }

    .cta-demo__whatsapp {
        font-size: 1.2rem;
        padding: 8px 14px
    }

    .problema__email {
        gap: 12px;
        margin: 20px 0
    }

    .problema__email img {
        width: 28px
    }

    .problema__email p {
        font-size: 1.1rem
    }

    .problema_email-contato {
        font-size: 1.05rem;
        padding: 4px 10px;
        word-break: break-all
    }

    .funcionamento {
        padding: 50px 0
    }

    .funcionamento__title {
        font-size: 1.65rem
    }

    .funcionamento__header {
        gap: 20px
    }
}

@media (max-width:440px) {
    .hero__badge {
        font-size: .75rem;
        padding: 5px 12px
    }

    .hero__headline {
        font-size: 1.48rem
    }

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

    .hero__content {
        gap: 16px
    }

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

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

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

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

    .cta-demo__form-subtitle {
        font-size: .8rem;
        margin-bottom: 14px
    }

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

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

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

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

    .problema {
        padding: 44px 0
    }

    .problema__tag {
        font-size: .78rem;
        padding: 5px 12px;
        margin-bottom: 16px
    }

    .problema__title {
        font-size: 1.5rem;
        margin-bottom: 18px
    }

    .cta-demo__whatsapp {
        font-size: 1.05rem;
        padding: 7px 12px
    }

    .cta-demo__whatsapp-icon {
        height: 24px
    }

    .problema__email {
        gap: 10px;
        margin: 18px 0
    }

    .problema__email img {
        width: 26px
    }

    .problema__email p {
        font-size: 1rem
    }

    .problema_email-contato {
        font-size: .95rem;
        padding: 4px 9px
    }

    .funcionamento {
        padding: 44px 0
    }

    .funcionamento__title {
        font-size: 1.5rem
    }

    .funcionamento__header {
        gap: 18px
    }
}

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

    .hero__badge {
        font-size: .7rem;
        padding: 5px 10px
    }

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

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

    .hero__content {
        gap: 14px
    }

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

    .btn-ghost {
        font-size: .78rem;
        padding: 6px 10px
    }

    .cta-demo__form {
        padding: 14px 10px;
        border-radius: 9px
    }

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

    .cta-demo__form-subtitle {
        font-size: .76rem;
        margin-bottom: 12px
    }

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

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

    .cta-demo__field input,
    .cta-demo__field select {
        height: 38px;
        font-size: .84rem;
        padding: 0 9px
    }

    .cta-demo__submit {
        min-height: 42px;
        font-size: .84rem
    }

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

    .problema {
        padding: 38px 0
    }

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

    .problema__title {
        font-size: 1.38rem;
        margin-bottom: 16px
    }

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

    .cta-demo__whatsapp-icon {
        height: 22px
    }

    .problema__email {
        gap: 8px;
        margin: 14px 0
    }

    .problema__email img {
        width: 22px
    }

    .problema__email p {
        font-size: .9rem
    }

    .problema_email-contato {
        font-size: .85rem;
        padding: 4px 8px;
        border-radius: 6px;
        word-break: break-all
    }

    .problema__visual img {
        border-radius: 12px
    }

    .funcionamento {
        padding: 38px 0
    }

    .funcionamento__title {
        font-size: 1.35rem;
        line-height: 1.15
    }

    .funcionamento__header {
        gap: 16px
    }
}
