/* ===============================================
   NFSE MUNICIPAL - TEMA CINZA SUAVE #f1f5f9
   =============================================== */

/* Variáveis para NFS-e Municipal - Paleta Cinza Suave */
:root {
    --nfse-municipal-primary: #64748b;
    --nfse-municipal-primary-light: #94a3b8;
    --nfse-municipal-secondary: #cbd5e1;
    --nfse-municipal-accent: #f1f5f9;
    --nfse-municipal-dark: #334155;
    --nfse-municipal-dark2: #666;
    --nfse-municipal-text-gray: #475569;
    --nfse-municipal-text-medium: #64748b;
    --nfse-municipal-bg-light: #f8fafc;
    --nfse-municipal-bg-alt: #f1f5f9;
    --nfse-municipal-white: #ffffff;
    --nfse-municipal-shadow: rgba(100, 116, 139, 0.1);
    --nfse-municipal-green: #10b981;
}

/* Hero Section */
.hero-nfse-municipal {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #64748b 0%, #94a3b8 50%, #cbd5e1 100%);
    position: relative;
    overflow: hidden;
}

.hero-nfse-municipal::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(203, 213, 225, 0.15) 0%, transparent 70%);
    z-index: 1;
}

.hero-nfse-municipal-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-nfse-municipal-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(10px);
}

.hero-nfse-municipal h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.highlight-primary {
    color: #e2e8f0;
}

.highlight-secondary {
    color: #f1f5f9;
}

.highlight-accent {
    color: #ffffff;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

.hero-cta {
    margin-top: 2.5rem;
    text-align: center;
}

.btn-green {
    background: linear-gradient(135deg, #2ed8b6, #25b894);
    color: #fff;
    box-shadow: 0 10px 30px rgba(46, 216, 182, 0.3);
}

.btn-green:hover {
    background: linear-gradient(135deg, #25b894, #2ed8b6);
    transform: translateY(-1px);
    box-shadow: 0 12px 34px rgba(46, 216, 182, 0.35);
}

.hero-cta-benefits {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}

.hero-cta-benefits .check {
    color: #52e6c9;
    margin-right: 0.5rem;
}

/* ===============================================
   MOCKUP NFS-E MUNICIPAL
   =============================================== */

.visual-nfse-municipal-container {
    position: relative;
    height: 600px;
}

.nfse-municipal-mockup {
    background: white;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.mockup-header {
    background: linear-gradient(135deg, #374151, #4b5563);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.mockup-controls {
    display: flex;
    gap: 8px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red { background: #ef4444; }
.control.yellow { background: #f59e0b; }
.control.green { background: #10b981; }

.mockup-title {
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mockup-content {
    padding: 20px;
    height: calc(100% - 60px);
    overflow-y: auto;
    overflow-x: hidden;
}

/* Consulta Municipal */
.consulta-municipal {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    border: 2px solid #f1f5f9;
}

.municipio-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.municipio-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    cursor: default;
    transition: all 0.3s ease;
}

.municipio-item:hover {
    border-color: #64748b;
    transform: scale(1.02);
}

.municipio-item.selected {
    border-color: #64748b;
    background: #f1f5f9;
}

.municipio-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, rgba(100, 116, 139, 0.1), rgba(148, 163, 184, 0.1));
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 12px;
}

.municipio-info {
    flex: 1;
}

.municipio-nome {
    font-weight: 600;
    color: #374151;
    font-size: 12px;
    margin-bottom: 2px;
}

.municipio-provedor {
    color: #6b7280;
    font-size: 10px;
}

/* Resultado Municipal */
.resultado-municipal {
    background: white;
    border: 2px solid #f1f5f9;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.resultado-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-encontrada {
    background: #d1fae5;
    color: #065f46;
}

.nfse-numero {
    font-weight: 600;
    color: #374151;
}

.resultado-detalhes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.detalhe-item {
    background: #f8fafc;
    padding: 12px;
    border-radius: 8px;
}

.detalhe-label {
    color: #6b7280;
    font-size: 11px;
    margin-bottom: 4px;
}

.detalhe-valor {
    font-weight: 600;
    color: #374151;
    font-size: 12px;
}

/* ===============================================
   ELEMENTOS FLUTUANTES
   =============================================== */

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(100, 116, 139, 0.2);
    z-index: 3;
}

.floating-element i {
    color: #64748b;
}

.elem-1 {
    top: 80px;
    right: -20px;
    animation: float 3s ease-in-out infinite;
}

.elem-2 {
    top: 200px;
    right: 40px;
    animation: float 3s ease-in-out infinite 1s;
}

.elem-3 {
    top: 300px;
    right: -10px;
    animation: float 3s ease-in-out infinite 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ===============================================
   SEÇÃO PROVEDORES
   =============================================== */

.lp-provedores-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.lp-provedores-content {
    max-width: 600px;
}

.lp-provedores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.lp-provedor-item {
    background: var(--nfse-municipal-bg-light);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(100, 116, 139, 0.1);
    transition: all 0.3s ease;
}

.lp-provedor-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(100, 116, 139, 0.15);
    border-color: var(--nfse-municipal-secondary);
}

.lp-provedor-item i {
    color: var(--nfse-municipal-primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* Ícones check-circle específicos em verde */
.fa-check-circle {
    color: var(--nfse-municipal-green) !important;
}

.lp-provedor-item h4 {
    font-size: 0.9rem;
    margin: 0;
    color: var(--nfse-municipal-dark);
    font-weight: 600;
}

.lp-provedores-visual {
    position: relative;
}

.lp-provedores-mockup-container {
    position: relative;
    height: 520px;
}

.lp-provedores-mockup {
    background: white;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(100, 116, 139, 0.2);
    overflow: hidden;
    position: relative;
    z-index: 2;
    height: 100%;
}

.provedores-status h4 {
    color: #374151;
    font-size: 14px;
    margin: 0 0 16px 0;
    font-weight: 600;
}

.provedor-status-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.provedor-status-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

.provedor-status-item.active {
    background: linear-gradient(135deg, rgba(100, 116, 139, 0.1), rgba(148, 163, 184, 0.05));
    border-color: var(--nfse-municipal-primary);
}

.provedor-status-item:hover {
    transform: translateX(3px);
    box-shadow: 0 4px 15px rgba(100, 116, 139, 0.15);
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: relative;
}

.status-indicator.online {
    background: #10b981;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

.status-indicator.online::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #10b981;
    animation: ping 2s infinite;
}

.provedor-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.provedor-name {
    font-weight: 600;
    color: #374151;
    font-size: 13px;
}

.provedor-cities {
    color: #6b7280;
    font-size: 11px;
}

.status-badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
}

.status-badge.online {
    background: #d1fae5;
    color: #065f46;
}

.consulta-progress {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    margin-top: 16px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 12px;
}

.progress-header span:first-child {
    color: #374151;
    font-weight: 500;
}

.progress-percentage {
    color: var(--nfse-municipal-primary);
    font-weight: 700;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 16px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--nfse-municipal-primary), var(--nfse-municipal-primary-light));
    width: 87%;
    border-radius: 4px;
    animation: progressGrow 3s ease-in-out infinite;
}

.progress-stats {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.stat {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--nfse-municipal-primary);
    margin-bottom: 2px;
}

.stat-label {
    font-size: 10px;
    color: #6b7280;
    font-weight: 500;
}

.lp-floating-badge--3 {
    top: 30%;
    left: -30px;
    animation: float 3s ease-in-out infinite 2.5s;
    background: rgba(16, 185, 129, 0.9);
    z-index: 15;
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes progressGrow {
    0% { width: 85%; }
    50% { width: 90%; }
    100% { width: 87%; }
}

.lp-floating-badge {
    position: absolute;
    background: rgba(100, 116, 139, 0.9);
    color: white;
    padding: 0.8rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    z-index: 10;
}

.lp-floating-badge--1 {
    top: 10%;
    left: 30%;
    animation: float 3s ease-in-out infinite;
    background: rgba(100, 116, 139, 0.9);
    z-index: 15;
}

.lp-floating-badge--2 {
    bottom: 35%;
    right: 15%;
    animation: float 3s ease-in-out infinite 1.5s;
    background: rgba(148, 163, 184, 0.9);
    z-index: 15;
}

/* ===============================================
   SEÇÃO MUNICÍPIOS
   =============================================== */

.lp-municipios-container {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 20px 45px rgba(100, 116, 139, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.3);
}

.lp-municipios-search {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.lp-municipios-search-info h3 {
    color: var(--nfse-municipal-dark);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.lp-municipios-search-info p {
    color: var(--nfse-municipal-text-medium);
    margin: 0;
    font-size: 0.9rem;
}

.lp-municipios-search-controls {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.lp-municipios-input {
    padding: 0.8rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
    width: 250px;
    transition: border-color 0.3s ease;
}

.lp-municipios-input:focus {
    outline: none;
    border-color: var(--nfse-municipal-primary);
}

.lp-municipios-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    max-height: 400px;
    overflow-y: auto;
    padding: 1rem;
    background: var(--nfse-municipal-bg-light);
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.3);
}

.lp-municipio-card {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--nfse-municipal-green);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.lp-municipio-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(100, 116, 139, 0.15);
}

.lp-municipio-card i {
    color: var(--nfse-municipal-primary);
    font-size: 1.1rem;
}

.lp-municipio-card span {
    font-weight: 500;
    color: var(--nfse-municipal-dark);
}

.lp-municipios-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
}

.lp-municipios-loading i {
    font-size: 2rem;
    color: var(--nfse-municipal-primary);
    margin-bottom: 1rem;
}

.lp-municipios-loading p {
    color: var(--nfse-municipal-text-medium);
    margin: 0;
}

.lp-municipios-no-result {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
}

.lp-municipios-no-result i {
    font-size: 2rem;
    color: var(--nfse-municipal-text-medium);
    margin-bottom: 1rem;
}

.lp-municipios-no-result p {
    color: var(--nfse-municipal-text-medium);
    margin-bottom: 0.5rem;
}

.lp-municipios-no-result .small {
    font-size: 0.9rem;
    color: var(--nfse-municipal-text-gray);
}

.lp-municipios-cta {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.lp-municipios-cta p {
    color: var(--nfse-municipal-text-medium);
    margin-bottom: 1rem;
}

/* ===============================================
   SEÇÕES PADRÃO NFS-E MUNICIPAL
   =============================================== */

/* Seções principais */
.lp-section {
    padding: clamp(4rem, 7vw, 6rem) 0;
    background: #fff;
}

.lp-section--alt {
    background: var(--nfse-municipal-bg-light);
    position: relative;
    overflow: hidden;
}

/* Seção Introdução com background de lupa */
.lp-section--alt::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../images/background/fundo.png') no-repeat center left;
    background-size: 20%;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.lp-section--alt .container {
    position: relative;
    z-index: 1;
}

/* Ocultar lupa em telas menores */
@media (max-width: 768px) {
    .lp-section--alt::before {
        display: none;
    }
}

.lp-section--gradient {
    background: linear-gradient(135deg, #64748b, #334155);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.lp-section--gradient::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(203, 213, 225, 0.35), transparent 55%),
                radial-gradient(circle at 80% 40%, rgba(241, 245, 249, 0.25), transparent 55%);
    opacity: 0.8;
    pointer-events: none;
}

.lp-section__narrow {
    max-width: 860px;
    margin-inline: auto;
}

.lp-section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.lp-section__header--light {
    color: #fff;
}

.lp-section__eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--nfse-municipal-primary);
    background: rgba(100, 116, 139, 0.1);
    padding: 0.35rem 1rem;
    border-radius: 999px;
}

.lp-section--gradient .lp-section__eyebrow {
    background: rgba(226, 232, 240, 0.25);
    color: #fff;
}

.lp-section__title {
    margin-top: 1rem;
    font-size: 2.7rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--nfse-municipal-dark2);
}

.lp-section--gradient .lp-section__title {
    color: #fff;
}

.lp-section__subtitle {
    margin-top: 0.75rem;
    color: var(--nfse-municipal-text-medium);
    font-size: 1.25rem;
    line-height: 1.6;
}

.lp-section--gradient .lp-section__subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.lp-article p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--nfse-municipal-text-medium);
}

.lp-article h2 {
    font-size: 2.7rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--nfse-municipal-dark2);
}

/* Steps (Como funciona) */
.lp-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.lp-step {
    position: relative;
    padding: 2.5rem 2rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(100, 116, 139, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.lp-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 55px rgba(100, 116, 139, 0.18);
    border-color: #cbd5e1;
}

.lp-step__number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--nfse-municipal-primary), var(--nfse-municipal-primary-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 8px 20px rgba(100, 116, 139, 0.4);
}

.lp-step__icon {
    width: 80px;
    height: 80px;
    margin: 1rem auto 1.5rem;
    background: linear-gradient(135deg, rgba(100, 116, 139, 0.15), rgba(148, 163, 184, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #64748b;
}

.lp-step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #374151;
    font-weight: 700;
}

.lp-step p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 1rem;
}

/* Benefits (Benefícios) */
.lp-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.lp-benefit {
    position: relative;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.3);
    background: #fff;
    box-shadow: 0 18px 35px rgba(100, 116, 139, 0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.lp-benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 55px rgba(100, 116, 139, 0.15);
    border-color: #cbd5e1;
}

.lp-benefit__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(100, 116, 139, 0.15), rgba(148, 163, 184, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #64748b;
}

.lp-benefit h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #374151;
    font-weight: 700;
}

.lp-benefit p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 1rem;
}

/* Feature Grid (Recursos) */
.lp-feature-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.6rem;
}

.lp-feature {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(241, 245, 249, 0.9));
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.9rem;
    border: 1px solid rgba(100, 116, 139, 0.2);
    box-shadow: 0 20px 40px rgba(100, 116, 139, 0.15);
    transition: all 0.3s ease;
}

.lp-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(100, 116, 139, 0.25);
    border-color: rgba(100, 116, 139, 0.4);
}

.lp-feature__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--nfse-municipal-primary), var(--nfse-municipal-primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;  
    font-size: 1.5rem;
    color: #fff;
    box-shadow: 0 8px 25px rgba(100, 116, 139, 0.4);
}

.lp-feature h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #374151;
    font-weight: 700;
}

.lp-feature p {
    color: #6b7280;
    line-height: 1.65;
}

.lp-section__cta {
    margin-top: 3rem;
    text-align: center;
}

/* FAQ */
.faq {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 16px;
    margin-bottom: 1rem;
    box-shadow: 0 8px 25px rgba(100, 116, 139, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 12px 35px rgba(100, 116, 139, 0.12);
    border-color: #cbd5e1;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.faq-question:hover {
    background: rgba(100, 116, 139, 0.05);
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #666;
    margin: 0;
    flex: 1;
    line-height: 1.4;
}

.faq-question i {
    color: #64748b;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    margin-left: 1rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.8rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.8rem 1.8rem;
}

.faq-answer p {
    color: #6b7280;
    line-height: 1.65;
    margin: 0;
}

/* Botões específicos da NFS-e Municipal */
.btn-white {
    background: #fff;
    color: var(--nfse-municipal-dark);
    border: 2px solid transparent;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 12px;
}

.btn-white:hover {
    background: var(--nfse-municipal-bg-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(100, 116, 139, 0.2);
    color: var(--nfse-municipal-dark);
    text-decoration: none;
}

.btn-lg {
    padding: 1rem 2.2rem;
    font-size: 1.1rem;
}

/* ===============================================
   RESPONSIVIDADE
   =============================================== */

@media (max-width: 768px) {
    .hero-nfse-municipal {
        min-height: auto;
        padding: 80px 0 60px;
    }
    
    .hero-nfse-municipal-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-nfse-municipal h1 {
        font-size: 32px;
    }
    
    .visual-nfse-municipal-container {
        height: 500px;
    }
    
    .floating-element {
        display: none;
    }
    
    .municipio-selector {
        grid-template-columns: 1fr;
    }
    
    .resultado-detalhes {
        grid-template-columns: 1fr;
    }
    
    .lp-section__title {
        font-size: 2.2rem;
    }
    
    .lp-article h2 {
        font-size: 2.2rem;
    }
    
    .lp-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .lp-step {
        padding: 2rem 1.5rem;
    }
    
    .lp-step__icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin: 0.8rem auto 1.2rem;
    }
    
    .lp-step__number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        top: -12px;
    }
    
    .lp-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .lp-benefit {
        padding: 2rem 1.5rem;
    }
    
    .lp-benefit__icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin: 0 auto 1.2rem;
    }
    
    .lp-feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .lp-feature {
        padding: 1.5rem;
        text-align: center;
    }
    
    .lp-feature__icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin: 0 auto 1.2rem;
    }
    
    /* Responsividade Provedores */
    .lp-provedores-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .lp-provedores-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0.8rem;
    }
    
    .lp-provedor-item {
        padding: 0.8rem;
    }
    
    .lp-provedores-mockup-container {
        height: 400px;
    }
    
    .lp-floating-badge {
        display: none;
    }
    
    .provedor-status-item {
        padding: 10px;
    }
    
    .provedor-name {
        font-size: 12px;
    }
    
    .provedor-cities {
        font-size: 10px;
    }
    
    .progress-stats {
        flex-direction: column;
        gap: 8px;
    }
    
    /* Responsividade Municípios */
    .lp-municipios-search {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    
    .lp-municipios-search-controls {
        justify-content: center;
        flex-direction: column;
    }
    
    .lp-municipios-input {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .lp-municipios-list {
        grid-template-columns: 1fr;
        max-height: 300px;
    }
    
    .lp-municipio-card {
        padding: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-nfse-municipal h1 {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .mockup-content {
        padding: 16px;
        height: calc(100% - 50px);
    }
    
    .consulta-municipal,
    .resultado-municipal {
        padding: 16px;
    }
    
    .lp-section {
        padding: 3rem 0;
    }
    
    .lp-section__title {
        font-size: 1.8rem;
    }
    
    .lp-article h2 {
        font-size: 1.8rem;
    }
    
    .faq-question {
        padding: 1.4rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.4rem 1.4rem;
    }
    
    .lp-provedores-mockup-container {
        height: 480px;
    }
    
    .lp-floating-badge {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
        z-index: 15;
    }
}