/* ============================================
   PROBLEMAS RESOLVIDOS
============================================ */
#problemas { padding: 22px 0 24px; background: var(--color-bg-alt); }

#problemas h2 {
    font-size: 1.55rem;
    font-weight: 400;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

#problemas h2 strong {
    font-weight: 800;
    color: var(--color-primary);
}

.problemas-flow {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 2;
    margin-bottom: 48px;
}

.problemas-cta {
    text-align: center;
}

.btn-solicite-proposta {
    display: inline-block;
    background: #032e59;
    color: #c7ccd0;
    font-size: 1.8rem;
    font-weight: 700;
    padding: 20px 56px;
    border-radius: 999px;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: background 0.2s, transform 0.15s;
    font-family: var(--ff-base);
}

.btn-solicite-proposta:hover {
    background: var(--color-primary-dk);
    transform: translateY(-2px);
}


/* ============================================
   CTA PILL (Abaixo dos 3 Cards de Features)
============================================ */
.lp-features__cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 80px;
}

.lp-features__pill {
    background-color: var(--color-cta-orange);
    color: var(--color-white);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 800;
    padding: 18px 56px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(245, 124, 0, 0.35);
    transition: background-color 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
    cursor: pointer;
}

.lp-features__pill:hover {
    background-color: var(--color-cta-orange-h);
    transform: translateY(-1.5px);
    box-shadow: 0 12px 28px rgba(245, 124, 0, 0.45);
}

/* ============================================
   ANIMAÇÃO DE PULSAR (SOFT HEARTBEAT)
============================================ */

@keyframes pillPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 24px rgba(245, 124, 0, 0.35);
    }
    50% {
        transform: scale(1.01);
        box-shadow: 0 12px 32px rgba(245, 124, 0, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 8px 24px rgba(245, 124, 0, 0.35);
    }
}

.lp-features__pill {
    animation: pillPulse 3s ease-in-out infinite;
    will-change: transform;
}
.lp-features__pill:hover {
    animation: none;
    background-color: var(--color-cta-orange-h);
    transform: translateY(-1.5px);
}

/* ============================================
   LP FEATURES + SISTEMA COMPLETO  (BEM: lp-features / lp-sistema)
============================================ */
.lp-features {
    background: #ffffff;
    padding: 80px 0 40px;
}

.lp-features__header {
    text-align: center;
    margin-bottom: 56px;
}

.lp-features__grid {
    margin-top: -50px;
}

/* ============================================
   SISTEMA COMPLETO (Design Premium Card Cinza)
============================================ */
.lp-sistema {
    margin: 20px 0 0 0;
}

.lp-sistema__card {
    background-color: #e8e8e8;
    border-radius: 16px;
    overflow: hidden;
    padding: 48px 20px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 8px;
    align-items: center;
}

.lp-sistema__visual img {
    width: 140%;
    height: auto;
    display: block;
    transform: none;
}

.lp-sistema__content {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.lp-sistema__text-block {
    display: block;
    opacity: 0.85;
}

.lp-sistema__icon {
    flex-shrink: 0;
    color: #a0aec0;
    margin-top: 2px;
    opacity: 0.95;
}

.lp-sistema__text-block p {
    font-size: 1.3rem;
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

.lp-sistema__text-block strong {
    color: #606060;
    font-weight: 600;
}

.lp-sistema__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ff8807;
    color: var(--color-white);
    font-size: 1.65rem;
    opacity: 0.75;
    font-weight: 800;
    padding: 18px 20px;
    border-radius: 50px;
    text-decoration: none;
    align-self: stretch;
    transition: background-color var(--transition), transform var(--transition);
}

.lp-sistema__btn:hover {
    background-color: var(--color-cta-orange-h);
    transform: translateY(-2px);
}

.lp-sistema__icon {
    display: inline-block;
    vertical-align: top;
    width: 24px;
    height: 24px;
    margin-right: 8px;
    margin-top: 2px;
}

.lp-sistema__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.4;
    transition: filter var(--transition), opacity var(--transition);
}
.lp-sistema__text-block:hover .lp-sistema__icon img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ============================================
   LP CLOCK CTA BANNER  (BEM: lp-clock-cta)
============================================ */
.lp-clock-cta {
    background: #FFA100;
    padding: 18px 0 20px;
    overflow: hidden;
}
.lp-clock-cta__title {
    font-family: 'poppins', sans-serif;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-align: center;
    margin-bottom: -10px;
}
.lp-clock-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-white);
    color: var(--color-cta-orange);
    font-weight: 800;
    font-size: 1.55rem;
    letter-spacing: 0.5px;
    padding: 14px 28px;
    border-radius: 9999px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.22);
    transition: transform var(--transition), box-shadow var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}
.lp-clock-cta__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
.lp-clock-cta__text {
    text-align: center;
    color: #ff8500;
    font-family: "Montserrat", Sans-serif;
    line-height: 1.2;
    letter-spacing: 1px;
}
.lp-clock-cta__sub {
    font-size: 1.42rem;
    color: #faebcf;
    font-family:'poppins', sans-serif;
    font-weight: 800;
    flex: 1;
    text-align: center;
}
.lp-clock-cta__sub strong {
    color: #032e59;
    font-weight: 800;
}
.lp-clock-cta__img-wrap {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-shrink: 0;
    width: 250px;
    max-width: 100%;
    overflow: hidden;
}
.lp-clock-cta__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    user-select: none;
}

.lp-clock-cta__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.lp-clock-cta__title {
    margin-bottom: 25px;
    text-align: center;
}

.lp-clock-cta__action-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.lp-clock-cta__sub {
    margin: 0;
    text-align: left;
}

.lp-clock-cta__img-wrap {
    flex-shrink: 0;
    display: flex;
    justify-content: flex-end;
    min-width: 200px;
}

/* ============================================
   PREFEITURAS
============================================ */
.lp-prefeituras {
    background-color: #ffffff;
    margin: 0;
    padding: 0px 0 35px;
}

.lp-prefeituras__wrapper {
    display: flex;
    align-items: stretch;
    background: #ffffff;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    border: 1.5px solid #c9d8ea;
    box-shadow: 0 12px 48px rgba(0, 51, 102, 0.10);
}

.lp-prefeituras__fixed-card {
    position: relative;
    background: linear-gradient(150deg, #002f5e 0%, #005099 100%);
    padding: 14px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 190px;
    z-index: 2;
    overflow: hidden;
    gap: 6px;
}

.lp-prefeituras__fixed-card::before {
    content: '';
    position: absolute;
    top: -48px;
    right: -48px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    pointer-events: none;
}

.lp-prefeituras__fixed-card::after {
    content: '';
    position: absolute;
    bottom: -36px;
    left: -36px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.lp-prefeituras__card-deco {
    width: 26px;
    height: 26px;
    color: rgba(255, 255, 255, 0.35);
    flex-shrink: 0;
}

.lp-prefeituras__title {
    text-align: center;
    margin-bottom: 0;
    line-height: 1.1;
    text-transform: uppercase;
}

.lp-prefeituras__title-top {
    display: block;
    color: #ffffff;
    font-family: inherit;
    font-weight: 900;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    text-align: center;
    line-height: 1.2;
}

.lp-prefeituras__title-main {
    display: block;
    color: rgba(255, 255, 255, 0.55);
    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    margin-top: 4px;
    text-transform: uppercase;
}

.lp-prefeituras__count {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
}

.lp-prefeituras__btn {
    background-color: #ff9500;
    color: #ffffff;
    font-family: inherit;
    padding: 8px 18px;
    border-radius: 8px;
    border: none;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background-color 0.2s ease, transform 0.2s ease;
    margin-top: 4px;
    position: relative;
    z-index: 1;
}

.lp-prefeituras__btn:hover {
    background-color: #e08200;
    transform: scale(1.03);
}

.lp-prefeituras__btn .btn-icon {
    font-size: 0.8rem;
    font-weight: 900;
    line-height: 1;
}

.lp-prefeituras__carousel {
    display: flex;
    overflow-x: auto;
    cursor: grab;
    padding: 10px 0;
    align-items: center;
    flex: 1;
    min-width: 0;
    -webkit-overflow-scrolling: touch;
    mask-image: linear-gradient(to right, transparent, #000 56px, #000 calc(100% - 56px), transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 56px, #000 calc(100% - 56px), transparent);
}

.lp-prefeituras__carousel:active {
    cursor: grabbing;
}

.lp-prefeituras__track {
    display: flex;
    align-items: center;
    gap: 44px;
    flex-shrink: 0;
    padding: 0 32px;
}

.lp-prefeituras__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
    user-select: none;
    cursor: default;
    width: 96px;
}

.lp-prefeituras__item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-4px);
}

.lp-prefeituras__logo {
    height: 62px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    pointer-events: none;
}

.lp-prefeituras__city-label {
    font-size: 0.58rem;
    font-weight: 700;
    color: #7a8fa8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1;
    text-align: center;
}

.lp-prefeituras__city-name {
    font-size: 0.65rem;
    font-weight: 900;
    color: #003366;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-align: center;
    line-height: 1.25;
    word-break: break-word;
    hyphens: auto;
}

.lp-prefeituras__bottom-bar {
    display: none;
}

/* ============================================
   SLIDESHOW RELÓGIO DE PONTO
============================================ */
.lp-clock-slideshow {
    display: flex;
    position: relative;
    width: 250px;
    height: 220px;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}
.lp-clock-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    scroll-snap-align: center;
    pointer-events: none;
    -webkit-user-drag: none;
}
.lp-clock-slideshow::-webkit-scrollbar {
    display: none;
}

.lp-clock-slideshow:active {
    cursor: grabbing;
}

.lp-clock-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    scroll-snap-align: center;
    pointer-events: none;
    opacity: 1 !important;
    position: relative !important;
    transform: none !important;
}

.lp-clock-slide.active {
    opacity: 1;
}

/* ============================================
   SEÇÃO SONODA E SECULLUM EM NÚMEROS (FOTO 2)
============================================ */
.lp-numeros {
    padding: 36px 0;
    background-color: #ffffff;
}

.lp-numeros__wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
}

.lp-numeros__map-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-shrink: 0;
}

.lp-numeros__map-img {
    width: 200px;
    height: auto;
    margin-bottom: 15px;
}

.lp-numeros__map-text {
    color: #ff9900;
    font-size: 1.4rem;
    line-height: 1.2;
    font-weight: 600;
    margin: 0;
}

.lp-numeros__map-text strong {
    font-weight: 900;
    display: block;
}

.lp-numeros__content-col {
    flex: 1;
    max-width: 780px;
}

.lp-numeros__header {
    text-align: center;
    margin-bottom: 15px;
}

.lp-numeros__header h2 {
    font-family:'Poppins', sans-serif;
    color: #003366;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
}

.lp-numeros__header h3 {
    font-family:'Poppins', sans-serif;
    color: #ff9900;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 5px 0 0 0;
    letter-spacing: 0.5px;
}

.lp-numeros__card {
    background-color: #f0f4f8;
    border-radius: 12px;
    padding: 30px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.lp-numeros__stat {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lp-numeros__number {
    flex: 0 0 3ch;
    width: 3ch;
    color: #ff9900;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    text-align: right;
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum";
}

.lp-numeros__label {
    color: #5d7899;
    font-size: 1.15rem;
    line-height: 1.05;
    font-weight: 400;
    text-align: left;
}

/* ============================================
   LP VÍDEOS - HISTÓRIAS DE SUCESSO (BEM: lp-videos)
============================================ */
@keyframes videoModalFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes videoContentSlideIn {
    from { opacity: 0; transform: scale(0.88) translateY(32px); }
    to   { opacity: 1; transform: scale(1)    translateY(0);    }
}
@keyframes videoIframeIn {
    from { opacity: 0; transform: scale(0.97); }
    to   { opacity: 1; transform: scale(1);    }
}

#videoModal.modal-overlay {
    background: linear-gradient(
        160deg,
        rgba(0, 32, 96, 0.55)  0%,
        rgba(0,  8, 30, 0.50) 55%,
        rgba(20,  4,  0, 0.52) 100%
    );
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
}

#videoModal.modal-overlay::before {
    content: '';
    position: absolute;
    top: -15%;
    left: -8%;
    width: 55%;
    height: 65%;
    background: radial-gradient(circle, rgba(0,48,135,0.30) 0%, transparent 68%);
    pointer-events: none;
}
#videoModal.modal-overlay::after {
    content: '';
    position: absolute;
    bottom: -15%;
    right: -8%;
    width: 50%;
    height: 60%;
    background: radial-gradient(circle, rgba(245,124,0,0.15) 0%, transparent 68%);
    pointer-events: none;
}

#videoModal.modal-overlay.active {
    animation: videoModalFadeIn 0.28s ease forwards;
}
#videoModal.modal-overlay.active .video-modal__content {
    animation: videoContentSlideIn 0.42s cubic-bezier(0.34, 1.45, 0.64, 1) forwards;
}

.video-modal__wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 980px;
    padding: 0 8px;
    z-index: 1;
}

.video-modal__nav {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.13);
    border: 1.5px solid rgba(255,255,255,0.22);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 50%;
    color: #fff;
    font-size: 2.2rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease, opacity 0.22s ease;
}
.video-modal__nav:hover:not(:disabled) {
    background: var(--color-cta-orange);
    border-color: var(--color-cta-orange);
    transform: scale(1.12);
}
.video-modal__nav:disabled {
    opacity: 0.25;
    cursor: default;
}

.video-modal__content {
    position: relative;
    flex: 1;
    min-width: 0;
    padding-top: 52px;
    z-index: 1;
}

.video-modal__close {
    position: absolute;
    top: 4px;
    right: 0;
    background: rgba(255,255,255,0.12);
    border: 1.5px solid rgba(255,255,255,0.22);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.4rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    line-height: 1;
    transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}
.video-modal__close:hover {
    background: var(--color-cta-orange);
    border-color: var(--color-cta-orange);
    transform: scale(1.12) rotate(90deg);
}

.video-modal__body {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background-color: #000;
    border-radius: 14px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.07),
        0 28px 72px rgba(0,0,0,0.85),
        0 0 70px rgba(0,48,135,0.28);
}
.video-modal__body iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 14px;
    animation: videoIframeIn 0.3s ease forwards;
}

.lp-videos {
    background: var(--color-white);
    padding: 28px 0 28px;
}
.lp-videos__header {
    text-align: center;
    margin-bottom: 48px;
}
.lp-videos__title {
    position: relative;
    display: inline-block;
}
.lp-videos__title::after {
    content: '';
    display: block;
    width: 56px;
    height: 4px;
    background: var(--color-cta-orange);
    border-radius: 2px;
    margin: 12px auto 0;
}
.lp-videos__sub { margin-top: 16px; }

.lp-videos__carousel-wrap {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}
.lp-videos__track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--color-cta-orange) var(--color-bg-alt);
    padding-bottom: 16px;
}
.lp-videos__track::-webkit-scrollbar        { height: 6px; }
.lp-videos__track::-webkit-scrollbar-track  { background: var(--color-bg-alt); border-radius: 3px; }
.lp-videos__track::-webkit-scrollbar-thumb  { background: var(--color-cta-orange); border-radius: 3px; }

.lp-videos__item {
    position: relative;
    flex: 0 0 360px;
    scroll-snap-align: start;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-card);
    aspect-ratio: 16/9;
    background: #111;
    transition: transform var(--transition), box-shadow var(--transition);
    outline-offset: 3px;
}
.lp-videos__item:hover  { transform: scale(1.02); box-shadow: 0 12px 40px rgba(0,0,0,0.2); }
.lp-videos__item:focus-visible { outline: 3px solid var(--color-cta-orange); }

.lp-videos__thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}
.lp-videos__item:hover .lp-videos__thumb { opacity: 0.82; }

.lp-videos__play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    pointer-events: none;
}
.lp-videos__item:hover .lp-videos__play-btn {
    transform: translate(-50%, -50%) scale(1.12);
    box-shadow: 0 8px 32px rgba(0,0,0,0.45);
}
.lp-videos__iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.lp-videos__item--playing .lp-videos__play-btn { display: none; }
.lp-videos__item--playing .lp-videos__thumb    { display: none; }

/* ============================================
   LP CLIENTS  QUEM USA RECOMENDA
============================================ */
.lp-clients {
    background: var(--color-white);
    padding: 20px 0 40px;
    overflow: hidden;
}
.lp-clients__title {
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 48px;
}
.lp-clients__marquee-wrap {
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
    mask-image:         linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.lp-clients__track {
    display: flex;
    align-items: center;
    gap: 56px;
    width: max-content;
    will-change: transform;
    padding: 8px 0;
}
.lp-clients__track.is-ready {
    animation: lp-scroll-left 24s linear infinite;
}
@keyframes lp-scroll-left {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .lp-clients__track { animation: none !important; }
}
.lp-clients__logo {
    height: 90px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    flex-shrink: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
    opacity: 0.85;
}
.lp-clients__logo--xl {
    height: 116px;
    max-width: 280px;
}
.lp-clients__logo:hover {
    transform: scale(1.08);
    opacity: 1;
}

.lp-prefeituras__carousel {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.lp-prefeituras__carousel::-webkit-scrollbar {
    display: none;
}

/* ============================================
   RESPONSIVO — apenas seções abaixo do hero
============================================ */
@media (max-width: 1180px) {
    .lp-sistema__card {
        padding: 42px 32px;
        gap: 34px;
    }

    .lp-clock-cta__wrapper {
        gap: 24px;
    }

    .lp-numeros__wrapper {
        gap: 42px;
    }

    .lp-videos__item {
        flex-basis: 320px;
    }
}

@media (max-width: 900px) {
    .lp-features {
        padding: 34px 0 0;
    }

    .lp-features__grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 0;
    }

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

    .lp-features__icon-wrap {
        width: 48px;
        height: 48px;
        margin-bottom: 8px;
    }

    .lp-features__card-title {
        margin-bottom: 6px;
        font-size: 1.08rem;
        line-height: 1.18;
    }

    .lp-features__card-desc {
        font-size: 0.82rem;
        line-height: 1.45;
    }

    .lp-features__cta-wrap {
        margin-top: 18px;
        margin-bottom: 30px;
    }

    .lp-features__pill {
        width: min(100%, 330px);
        max-width: 100%;
        margin-inline: auto;
        padding: 12px 16px;
        border-radius: 12px;
        font-size: 0.95rem;
        line-height: 1.22;
        white-space: normal;
        text-align: center;
    }

    .lp-sistema {
        padding: 24px 0 34px;
        margin: 0;
    }

    .lp-sistema__card {
        grid-template-columns: 1fr;
        padding: 16px;
        gap: 16px;
        border-radius: 14px;
    }

    .lp-sistema__visual {
        order: -1;
    }

    .lp-sistema__visual img {
        width: 100%;
        max-width: 100%;
    }

    .lp-sistema__content {
        gap: 14px;
    }

    .lp-sistema__text-block {
        text-align: left;
    }

    .lp-sistema__text-block p {
        font-size: 0.86rem;
        line-height: 1.48;
    }

    .lp-sistema__btn {
        width: 100%;
        min-height: 42px;
        padding: 10px 14px;
        border-radius: 10px;
        font-size: 0.95rem;
        line-height: 1.2;
        text-align: center;
        white-space: normal;
    }

    .lp-prefeituras {
        padding: 0 0 24px;
    }

    .lp-prefeituras__wrapper {
        flex-direction: column;
        border-radius: 14px;
    }

    .lp-prefeituras__fixed-card {
        min-width: 0;
        width: 100%;
        padding: 14px;
        flex-flow: row wrap;
        justify-content: center;
        gap: 8px;
    }

    .lp-prefeituras__title-top {
        font-size: 0.9rem;
    }

    .lp-prefeituras__title-main,
    .lp-prefeituras__count {
        font-size: 0.62rem;
    }

    .lp-prefeituras__btn {
        min-height: 34px;
        padding: 7px 12px;
        border-radius: 8px;
        font-size: 0.76rem;
    }

    .lp-prefeituras__carousel {
        padding: 10px 0;
        overflow-x: auto;
        mask-image: none;
        -webkit-mask-image: none;
    }

    .lp-prefeituras__track {
        gap: 24px;
        padding: 0 18px;
    }

    .lp-prefeituras__item {
        width: 82px;
    }

    .lp-prefeituras__logo {
        height: 50px;
    }

    .lp-clock-cta {
        padding: 28px 0 30px;
    }

    .lp-clock-cta__wrapper {
        flex-direction: column;
        gap: 18px;
        text-align: center;
    }

    .lp-clock-cta__title {
        margin-bottom: 12px;
        font-size: 1.48rem;
        line-height: 1.28;
    }

    .lp-clock-cta__action-row {
        flex-direction: column;
        gap: 14px;
    }

    .lp-clock-cta__btn {
        width: min(100%, 330px);
        justify-content: center;
        gap: 8px;
        padding: 12px 16px;
        border-radius: 12px;
        font-size: 0.98rem;
        line-height: 1.18;
        white-space: normal;
    }

    .lp-clock-cta__btn svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }

    .lp-clock-cta__text {
        letter-spacing: 0;
    }

    .lp-clock-cta__sub {
        font-size: 0.92rem;
        line-height: 1.35;
        text-align: center;
    }

    .lp-clock-cta__img-wrap {
        width: 190px;
        min-width: 0;
        justify-content: center;
    }

    .lp-clock-slideshow {
        width: 190px;
        height: 150px;
    }

    .lp-numeros {
        padding: 30px 0;
    }

    .lp-numeros__wrapper {
        flex-direction: column;
        gap: 18px;
    }

    .lp-numeros__map-img {
        width: 160px;
        margin-bottom: 10px;
    }

    .lp-numeros__map-text {
        font-size: 1.08rem;
    }

    .lp-numeros__content-col {
        width: 100%;
        max-width: 100%;
    }

    .lp-numeros__header h2 {
        font-size: 1.2rem;
    }

    .lp-numeros__header h3 {
        font-size: 0.92rem;
    }

    .lp-numeros__card {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: start;
        gap: 8px;
        padding: 14px 10px;
        border-radius: 12px;
    }

    .lp-numeros__stat {
        flex-direction: column;
        justify-content: flex-start;
        gap: 4px;
        min-width: 0;
        text-align: center;
    }

    .lp-numeros__number {
        flex: 0 0 auto;
        width: auto;
        font-size: 2rem;
        text-align: center;
    }

    .lp-numeros__label {
        font-size: 0.68rem;
        line-height: 1.08;
        text-align: center;
    }

    .lp-videos {
        padding: 28px 0;
    }

    .lp-videos__header {
        margin-bottom: 18px;
    }

    .lp-videos__sub {
        margin-top: 8px;
        font-size: 0.86rem;
    }

    .lp-videos__carousel-wrap {
        padding-inline: 18px;
    }

    .lp-videos__track {
        gap: 12px;
        padding-bottom: 12px;
    }

    .lp-videos__item {
        flex: 0 0 calc(100vw - 54px);
        border-radius: 12px;
    }

    .lp-videos__play-btn {
        width: 48px;
        height: 48px;
    }

    .video-modal__wrapper {
        gap: 8px;
        padding: 0;
    }

    .video-modal__nav {
        width: 38px;
        height: 38px;
        font-size: 1.7rem;
    }

    .video-modal__close {
        width: 36px;
        height: 36px;
    }

    .lp-clients {
        padding: 24px 0 30px;
    }

    .lp-clients__title {
        margin-bottom: 20px;
        font-size: 1.08rem;
        line-height: 1.32;
    }

    .lp-clients__track {
        gap: 28px;
    }

    .lp-clients__logo {
        height: 54px;
        max-width: 150px;
    }

    .lp-clients__logo--xl {
        height: 68px;
        max-width: 180px;
    }

    #suporte {
        padding-top: 34px;
        padding-bottom: 40px;
        background: #ffffff;
    }

    #suporte .suporte-top {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 26px;
    }

    #suporte .suporte-top__text h2 {
        margin-bottom: 10px;
        font-size: 1.45rem;
        line-height: 1.18;
    }

    #suporte .suporte-top__text p {
        max-width: none;
        margin-bottom: 10px;
        font-size: 0.84rem;
        line-height: 1.48;
    }

    #suporte .suporte-top__btns {
        gap: 8px;
        width: 100%;
        max-width: none;
    }

    #suporte .suporte-btn {
        width: 100%;
        min-height: 42px;
        padding: 10px 14px !important;
        border-radius: 10px;
        font-size: 0.8rem;
        line-height: 1.2;
        text-align: center;
        white-space: normal;
    }

    #suporte .suporte-btn svg {
        width: 18px;
        height: 18px;
        flex: 0 0 auto;
    }

    #suporte .suporte-canais {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    #suporte .suporte-canal {
        padding: 14px;
        border: 1px solid #e4ebf2;
        border-radius: 12px;
        background: #ffffff;
        box-shadow: 0 8px 18px rgba(24, 38, 54, 0.06);
    }

    #suporte .suporte-canal h3 {
        margin-bottom: 8px;
        padding-left: 12px;
        border-left: 4px solid #ff9900;
        color: #496f95;
        font-size: 1.08rem;
        line-height: 1.2;
    }

    #suporte .suporte-canal h3::before {
        display: none;
    }

    #suporte .suporte-canal p {
        font-size: 0.8rem;
        line-height: 1.48;
    }

    #problemas {
        padding: 28px 0 34px;
    }

    #problemas h2 {
        margin-bottom: 12px;
        font-size: 1.28rem;
        line-height: 1.2;
    }

    .problemas-flow {
        margin-bottom: 20px;
        font-size: 0.82rem;
        line-height: 1.65;
    }

    .btn-solicite-proposta {
        width: min(100%, 330px);
        padding: 12px 16px;
        border-radius: 10px;
        font-size: 0.95rem;
        line-height: 1.22;
        letter-spacing: 0;
        white-space: normal;
    }
}

@media (max-width: 360px) {
    .lp-features__card,
    .lp-sistema__card,
    #suporte .suporte-canal {
        padding: 12px;
    }

    #suporte .suporte-top__text h2 {
        font-size: 1.34rem;
    }
}
