﻿/* ============================================
   HERO (Otimizado para LCP - Grid Lado a Lado)
============================================ */

#hero {
    background: linear-gradient(70deg, #02182b 44%, #110F12 100%);
    color: var(--color-white);
    padding: 20px 0 0;
    overflow: hidden;
    position: relative;
}

#hero .container {
    padding-left: 4px;
}

#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../../assets/media/page-home/hero/background.webp');
    background-repeat: repeat;
    background-position: center calc(50% - 12px);
    background-size: cover;
    opacity: 0.14;
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 24px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    padding: 10px 0 20px;
    position: relative;
    z-index: 2;
    align-items: flex-start;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px; 
    background-color: rgba(255, 255, 255, 0.363); 
    color: #ffa100; 
    padding: 6px 16px;
    border-radius: 9999px;
    font-family: "Montserrat", Sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    margin-left: 12px;
    text-transform: uppercase;
}

.hero-tagline svg {
    flex-shrink: 0;
}

.hero-title {
    font-family: "Montserrat", Sans-serif;
    font-size: clamp(2.3rem, 2.4vw, 2.7rem) !important;
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 14px;
    width: 100%;
    letter-spacing: -0.02em!important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-left: 10px !important;
}
.hero-desc,
.hero-form-card {
    width: 100%;
    max-width: 570px; 
}
.hero-desc {
    font-family:"Poppins", Sans-serif !important;
    font-size: 1.28rem;
    line-height: 1.65;
    margin-left: 10px !important;
    opacity: 1;
    margin-bottom: 20px;
    max-width: 90%;
}

.hero-form-card {
    background: transparent; 
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
}

/* Labels brancos no hero (fundo escuro) */
#hero .form-group label {
    font-family: "Poppins", Sans-serif !important;
    color: #FFFFFF !important;
    padding-left: 10px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
}

#hero .form-group {
    margin-bottom: 10px;
}

#hero .form-group input::placeholder,
#hero .form-group textarea::placeholder {
    color: #afafaf;
    font-size: 0.95rem;
}

.text-danger { color: #ff6b6b; }

.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 40px;
    background: #FF8500;
    color: var(--color-white);
    border: none;
    cursor: pointer;
    margin-top: 8px;
    transition: background var(--transition), transform var(--transition);
    box-shadow: 0 4px 20px rgba(245, 124, 0, 0.45);
    display: block;
    text-align: center;
    text-transform: uppercase;
}
.btn-submit:hover { background: var(--color-cta-orange-h); transform: translateY(-2px); }

.hero-login-link {
    text-align: center;
    margin-top: 15px;
    font-size: 0.85rem;
}

.hero-login-link a {
    color: #39a7c4;
    text-decoration: underline;
    font-weight: 500;
    transition: color var(--transition);
}

.hero-login-link a:hover {
    color: var(--color-white);
}

/* --- LADO DIREITO: IMAGEM E SELOS FLUTUANTES --- */
.hero-visuals {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.hero-main-img {
    height: 738px;
    width: auto;
    max-width: none;
    object-fit: contain;
    object-position: bottom right;
    margin-bottom: -80px;
    margin-left: -210px !important;
     margin-right: 0;
    position: relative;
    z-index: 1;
}
.hero-side-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 10px;
    right: 0; 
    z-index: 2;
}

.hero-side-badges img {
    width: 90px;
    height: auto;
    background: var(--color-bg);
    border-radius: 15px;
    box-shadow: var(--shadow-card);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-side-badges img:hover {
    transform: translateY(-4px) scale(1.07);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}



/* ============================================
   TRUST BAR
============================================ */
#trust-bar {
    background: var(--color-white);
    padding: 28px 0;
    border-bottom: 1px solid var(--color-border);
}

.trust-bar-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-badge { display: flex; align-items: center; gap: 12px; }

.trust-badge-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.trust-badge-text strong { display: block; font-size: 1.15rem; font-weight: 800; color: var(--color-primary); line-height: 1; }
.trust-badge-text span { font-size: 0.78rem; color: var(--color-text-light); font-weight: 500; }

.trust-divider { width: 1px; height: 40px; background: var(--color-border); }

/* ============================================
   FEATURES / PILARES
============================================ */
#features { padding: 80px 0; background: var(--color-bg-alt); }

.features-header { text-align: center; margin-bottom: 56px; }

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

.feature-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(0,0,0,0.12); }

.feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.feature-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--color-primary); margin-bottom: 12px; }
.feature-card p { font-size: 0.9rem; color: var(--color-text-light); line-height: 1.65; }

/* ============================================
   SISTEMA COMPLETO
============================================ */
#sistema { padding: 88px 0; background: var(--color-white); }

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

.sistema-visual {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    background: var(--color-bg-alt);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sistema-visual img { width: 100%; height: 100%; object-fit: cover; }

.sistema-visual-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--color-text-light);
    font-size: 0.85rem;
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #e8edf5 0%, #d0d9ea 100%);
}

.sistema-content .section-title { margin-bottom: 16px; }
.sistema-check-list { margin: 24px 0 32px; }

.sistema-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.55;
}

.check-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--color-cta-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}
.check-icon svg { width: 11px; height: 11px; }

/* ============================================
   ECONOMIA CTA BAND
============================================ */
#economia {
    background: linear-gradient(135deg, var(--color-cta-orange) 0%, #ff9800 100%);
    padding: 56px 0;
    text-align: center;
}

#economia h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

/* ============================================
   PREFEITURAS
============================================ */
#prefeituras { padding: 88px 0; background: var(--color-bg-alt); }

.prefeituras-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.prefeituras-content .section-title { margin-bottom: 16px; }

.prefeituras-list { margin: 24px 0 32px; }
.prefeituras-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.92rem;
    color: var(--color-text-light);
}

.prefeituras-img-wrap {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--color-bg);
    box-shadow: var(--shadow-card);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prefeituras-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--color-text-light);
    font-size: 3rem;
    background: linear-gradient(135deg, #e3e8f5, #c8d2e8);
}

/* ============================================
   RELÃƒâ€œGIO DE PONTO
============================================ */
#relogio { padding: 88px 0; background: var(--color-primary); color: var(--color-white); text-align: center; }
#relogio .section-title { color: var(--color-white); }
#relogio .section-sub { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 32px; }

.relogio-imgs { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin: 40px 0; }

.relogio-img-box {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    font-size: 0.8rem;
    width: 140px;
}
.relogio-img-box img { width: 80px; height: 80px; object-fit: contain; }
.relogio-img-box .ri-placeholder { font-size: 2.5rem; }

/* ============================================
   COBERTURA / MAPA
============================================ */
#cobertura { padding: 88px 0; background: var(--color-white); }

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

.cobertura-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    background: var(--color-bg-alt);
    aspect-ratio: 3/4;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cobertura-map img { width: 100%; height: 100%; object-fit: contain; }
.cobertura-map-placeholder { display: flex; flex-direction: column; align-items: center; gap: 10px; color: var(--color-text-light); font-size: 0.9rem; }

.cobertura-content .section-title { margin-bottom: 16px; }
.cobertura-content p { color: var(--color-text-light); margin-bottom: 16px; line-height: 1.7; }

.cities-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 24px; }

.city-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--color-text-light);
    padding: 6px 0;
    border-bottom: 1px solid var(--color-border);
}

.city-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--color-primary); flex-shrink: 0; }

/* ============================================
   MÃƒâ€°TRICAS / NÃƒÅ¡MEROS
============================================ */
#metricas { padding: 88px 0; background: var(--color-bg-dark); color: var(--color-white); text-align: center; }
#metricas .section-title { color: var(--color-white); margin-bottom: 56px; }

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

.metrica-item {
    padding: 32px 20px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.05);
}

.metrica-number {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 8px;
}

.metrica-label { font-size: 0.88rem; color: rgba(255,255,255,0.7); font-weight: 500; line-height: 1.4; }

/* ============================================
   CASOS DE SUCESSO
============================================ */
#cases { padding: 88px 0; background: #ffffff; }

.cases-header { text-align: center; margin-bottom: 48px; }
.cases-header .section-sub { margin-top: 12px; }

.cases-logos { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; margin-bottom: 32px; }

.case-logo-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 20px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: box-shadow var(--transition), border-color var(--transition);
    cursor: pointer;
}
.case-logo-card:hover { box-shadow: var(--shadow-card); border-color: var(--color-primary); }
.case-logo-card img { max-height: 48px; width: auto; object-fit: contain; filter: grayscale(0.3); transition: filter var(--transition); }
.case-logo-card:hover img { filter: grayscale(0); }

.case-logo-name { font-size: 0.72rem; font-weight: 600; color: var(--color-text-light); text-align: center; }
.cases-cta { text-align: center; }



/* ============================================
   SUPORTE / CONTATO
============================================ */
#suporte { background: #ffffff; }

/* ============================================
   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);
}
@media (max-width: 600px) {
    .lp-features__pill {
        width: 100%;
        padding: 16px 20px;
        font-size: 1.15rem;
    }
}
/* ============================================
   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;
}
@media (max-width: 992px) {
    .lp-sistema__card {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        gap: 40px;
    }
    
    .lp-sistema__visual {
        order: -1;
    }

    .lp-sistema__btn {
        align-self: stretch; 
        width: 100%;
    }
}
/* ============================================
   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__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.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; 
}

/* ============================================
   RESPONSIVO (Para Celular)
============================================ */
@media (max-width: 768px) {
    .lp-clock-cta__wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

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

    .lp-clock-cta__sub {
        text-align: center; 
    }
}
/* ============================================
   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;
}

@media (max-width: 768px) {
    .lp-prefeituras__wrapper {
        flex-direction: column;
    }

    .lp-prefeituras__fixed-card {
        padding: 24px 20px;
        min-width: unset;
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
}
/* ============================================
   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;
}

/* --- LADO ESQUERDO: MAPA --- */
.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;
}

/* --- LADO DIREITO: NÚMEROS --- */
.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;
}

/* Card que agrupa os números lado a lado com fundo cinza azulado */
.lp-numeros__card {
    background-color: #f0f4f8;
    border-radius: 12px;
    padding: 30px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* Cada estatística: número grande à esquerda e texto descritivo à direita */
.lp-numeros__stat {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Número em destaque, grande e em laranja */
.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";
}

/* Texto de apoio abaixo do número, compacto e em azul suave */
.lp-numeros__label {
    color: #5d7899;
    font-size: 1.15rem;
    line-height: 1.05;
    font-weight: 400;
    text-align: left;
}

/* --- RESPONSIVO PARA CELULAR --- */
@media (max-width: 992px) {
    .lp-numeros__wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .lp-numeros__card {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
}
/* ============================================
   LP VÃƒÂDEOS Ã¢â‚¬â€ HISTÃƒâ€œRIAS DE SUCESSO  (BEM: lp-videos)
============================================ */
/* Keyframes */
@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);    }
}

/* Overlay do modal */
#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;
}

/* Orbes decorativos de fundo */
#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;
}

/* Animação ao abrir */
#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;
}

/* Wrapper flex: setas de navegação + vídeo */
.video-modal__wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 980px;
    padding: 0 8px;
    z-index: 1;
}

/* Setas de navegação do modal */
.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;
}

/* Wrapper do conteúdo do modal */
.video-modal__content {
    position: relative;
    flex: 1;
    min-width: 0;
    padding-top: 52px;
    z-index: 1;
}


/* Botão de fechar o modal */
.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);
}

/* Corpo do vídeo em proporção 16:9 */
.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;
}

/* ============================================
   RESPONSIVO 
============================================ */
@media (max-width: 900px) {
    .nav-menu { display: none; }
    .nav-toggle { display: flex; }
    .nav-actions .btn-rh,
    .nav-actions .btn-indicate { display: none; }

    .nav-menu.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--color-white);
        padding: 16px 24px 24px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        gap: 4px;
        z-index: 999;
        max-height: calc(100vh - 72px);
        overflow-y: auto;
    }

    .submenu { display: block; position: static; box-shadow: none; border: none; padding-left: 16px; border-top: 1px solid var(--color-border); margin-top: 4px; }

    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-title { font-size: 3rem; }

    .features-grid { grid-template-columns: 1fr; }
    .sistema-grid { grid-template-columns: 1fr; }
    .prefeituras-grid { grid-template-columns: 1fr; }
    .cobertura-grid { grid-template-columns: 1fr; }
    .suporte-top    { grid-template-columns: 1fr; }
    .suporte-canais { grid-template-columns: 1fr; }
    .footer-main { grid-template-columns: 1fr 1fr 1fr; }
    .footer-col--loc2, .footer-col--loc3 { display: none; }
    .footer-city--first { margin-top: 0; }
    .cases-logos { grid-template-columns: repeat(3, 1fr); }
    .metricas-grid { grid-template-columns: 1fr; gap: 16px; }

    .lp-features__grid   { grid-template-columns: 1fr; gap: 20px; }
    .lp-sistema__inner   { grid-template-columns: 1fr; gap: 40px; }
    .lp-clock-cta__row   { flex-direction: column; gap: 20px; }
    .lp-clock-cta__sub   { text-align: center; }
    .lp-clock-cta__img-wrap { order: -1; }
    .lp-prefeituras__layout { grid-template-columns: 1fr; gap: 32px; }
    .lp-prefeituras__sidebar { align-self: auto; }
    .lp-videos__item     { flex: 0 0 300px; }
}

@media (max-width: 600px) {
    .hero-badges { gap: 8px; }
    .trust-bar-grid { gap: 20px; }
    .trust-divider { display: none; }
    .footer-main { grid-template-columns: 1fr 1fr; }
    .suporte-top__text h2 { font-size: 1.7rem; }
    .cases-logos { grid-template-columns: repeat(2, 1fr); }
    .cities-grid { grid-template-columns: 1fr; }

    /* Novas seções da LP */
    .lp-features { padding: 56px 0 0; }
    .lp-sistema  { padding: 48px 0 64px; }
    .lp-clock-cta__row { flex-direction: column; }
    .lp-clock-cta__img-wrap { display: none; }
    .lp-prefeituras__layout { padding: 0 16px; }
    .lp-videos__item { flex: 0 0 calc(100vw - 48px); }
    .lp-clients__track { gap: 32px; }
}

/* ============================================
   RESPONSIVE HARDENING
============================================ */
@media (max-width: 1180px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
    }

    .hero-main-img {
        height: clamp(390px, 46vw, 500px);
        max-width: 100%;
        margin-left: -48px;
    }

    .lp-sistema__card {
        padding: 48px 44px;
        gap: 48px;
    }
}

@media (max-width: 992px) {
    #hero {
        padding-top: 34px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        max-width: 680px;
        margin-inline: auto;
        align-items: center;
        text-align: center;
    }

    .hero-desc {
        max-width: 620px;
    }

    .hero-desc br {
        display: none;
    }

    .hero-visuals {
        justify-content: center;
        align-items: center;
        padding-top: 8px;
    }

    .hero-main-img {
        width: min(100%, 430px);
        height: auto;
        margin: 0;
    }

    .hero-side-badges {
        top: 0;
        right: max(20px, calc(50% - 260px));
    }

    .lp-features__grid,
    .features-grid,
    .sistema-grid,
    .prefeituras-grid,
    .cobertura-grid {
        grid-template-columns: 1fr;
    }

    .lp-sistema__card {
        grid-template-columns: 1fr;
        padding: 40px 28px;
        gap: 34px;
    }

    .lp-sistema__visual {
        order: -1;
    }

    .lp-sistema__visual img {
        transform: none;
    }

    .lp-clock-cta__wrapper,
    .lp-numeros__wrapper {
        flex-direction: column;
    }

    .lp-clock-cta__wrapper {
        gap: 26px;
        text-align: center;
    }

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

    .lp-clock-cta__sub {
        text-align: center;
    }

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

    .footer-col--loc2,
    .footer-col--loc3 {
        display: block;
    }

    .video-modal__wrapper {
        max-width: 100%;
    }
}

@media (max-width: 700px) {
    .hero-title {
        font-size: clamp(1.8rem, 5.5vw, 2.4rem);
    }

    .hero-desc {
        font-size: 1rem;
        line-height: 1.55;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-visuals {
        flex-direction: column-reverse;
        align-items: center;
    }

    .hero-side-badges {
        position: static;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        width: 100%;
        max-width: 420px;
        margin: 18px auto 0;
    }

    .hero-side-badges img {
        width: 100%;
        max-width: 82px;
        margin-inline: auto;
    }

    .lp-sistema {
        margin-bottom: 54px;
    }

    .lp-sistema__card {
        border-radius: 12px;
        padding: 30px 18px;
    }

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

    .lp-sistema__text-block p {
        font-size: 1rem;
    }

    .lp-sistema__content {
        gap: 20px;
    }

    .lp-sistema__btn,
    .lp-clock-cta__btn,
    .btn-solicite-proposta {
        width: 100%;
        white-space: normal;
        text-align: center;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .lp-prefeituras__wrapper {
        flex-direction: column;
    }

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

    .lp-prefeituras__carousel {
        padding-inline: 0;
        overflow-x: auto;
    }

    .lp-numeros__card {
        width: 100%;
        padding: 24px 18px;
        align-items: center;
        text-align: center;
    }

    .lp-numeros__stat {
        width: 100%;
        justify-content: center;
    }

    .lp-numeros__number {
        font-size: 2.8rem;
    }

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

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

    .video-modal__nav {
        width: 40px;
        height: 40px;
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-tagline {
        width: 100%;
        font-size: 0.78rem;
        text-align: center;
    }

    .hero-title {
        width: 100%;
    }

    .hero-title br {
        display: none;
    }

    .hero-main-img {
        width: min(100%, 320px);
    }

    .hero-side-badges {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lp-clock-cta__title {
        font-size: 1.7rem;
    }

    .lp-clock-cta__sub {
        font-size: 1.05rem;
    }

    .lp-clock-slideshow {
        width: min(250px, 80vw);
        height: 190px;
    }

    .lp-numeros__stat {
        flex-direction: column;
        gap: 2px;
    }

    .lp-numeros__number {
        flex: 0 0 auto;
        width: auto;
        min-width: 3ch;
        text-align: center;
    }

    .lp-numeros__label {
        text-align: center;
    }
}

/* Ajustes finos solicitados */
.lp-prefeituras__carousel {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

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


@media (min-width: 993px) {
    #hero {
        padding: 0;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 660px) minmax(0, 400px);
        gap: 28px;
        min-height: 404px !important;
        align-items: center;
        justify-content: start;
    }

    .hero-content {
        max-width: 660px;
        gap: 10px;
        padding: 24px 0 18px 25px;
    }

    .hero-tagline {
        padding: 5px 12px;
        font-size: 0.92rem;
    }

    .hero-title {
        max-width: none;
        margin: 0 0 6px;
        font-size: clamp(2rem, 2.4vw, 2.5rem);
        line-height: 1.02;
    }

    .hero-form-card,
    .hero-desc {
        max-width: 450px;
    }

    .hero-desc {
        margin-bottom: 4px;
        font-size: 0.98rem;
        line-height: 1.42;
    }

    #hero .form-group {
        margin-bottom: 6px;
    }

    #hero .form-group label {
        margin-bottom: 2px;
        font-size: 0.84rem;
    }

    #hero .form-group input {
        min-height: 29px;
        padding: 6px 12px;
        border-radius: 999px;
        font-size: 0.84rem;
    }

    .form-row {
        gap: 8px 12px;
        margin-bottom: 6px;
    }

    .btn-submit {
        min-height: 36px;
        margin-top: 8px;
        padding: 10px 18px;
        font-size: 0.92rem;
    }

    .hero-login-link {
        margin-top: 8px;
        font-size: 0.76rem;
    }

    .hero-visuals {
        justify-content: flex-start;
        align-self: stretch;
        align-items: flex-end;
        overflow: visible;
    }

    .hero-main-img {
        margin-left: -150px;
        margin-bottom: -1px;
        height: 500px !important;
        max-width: none;
        width: auto;
        transform: scale(1.0);
        transform-origin: left bottom;
    }

    .hero-side-badges {
        top: 60px;
        right: -20px;
        gap: 15px;
    }

    .hero-side-badges img {
        width: 90px;
        border-radius: 12px;
    }
}

@media (max-width: 640px) {
    #hero {
        overflow: hidden;
    }

    .hero-grid,
    .hero-content,
    .hero-form-card,
    .hero-form-card form,
    .hero-title,
    .hero-desc {
        min-width: 0;
        max-width: 100%;
    }

    .hero-content {
        overflow: hidden;
    }

    .hero-tagline {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        white-space: normal;
        line-height: 1.25;
        padding-inline: 12px;
    }

    .hero-title {
        overflow-wrap: normal;
    }

    #hero .form-group label {
        text-align: left;
    }

    .btn-submit {
        white-space: normal;
        line-height: 1.25;
    }

    .hero-visuals {
        width: 100%;
        overflow: hidden;
    }

    .hero-main-img {
        width: min(100%, 340px);
        max-width: 100%;
    }

    .hero-side-badges {
        position: static !important;
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        width: min(100%, 250px);
        margin: 14px auto 0;
    }

    .hero-side-badges img {
        max-width: 76px;
    }

    .lp-prefeituras__carousel {
        overflow-x: auto;
    }
}
