/* ============================================
   INOVA POP - CSS COMPLETO
   Tema: Creme e Laranja
   ============================================ */

/* ===== RESET E BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f8f6f0;
    min-height: 100vh;
    color: #1e2a3a;
    overflow-x: hidden;
}

/* ===== FUNDO COM SUTILEZA ===== */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: 
        radial-gradient(ellipse at 10% 20%, rgba(255, 125, 10, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 80%, rgba(41, 128, 185, 0.03) 0%, transparent 50%),
        linear-gradient(180deg, #f8f6f0 0%, #f5f0e8 100%);
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: 
        radial-gradient(1px 1px at 15% 25%, rgba(255,125,10,0.12), transparent),
        radial-gradient(1px 1px at 35% 65%, rgba(41,128,185,0.10), transparent),
        radial-gradient(1px 1px at 55% 15%, rgba(142,68,173,0.08), transparent),
        radial-gradient(1px 1px at 75% 75%, rgba(39,174,96,0.08), transparent),
        radial-gradient(1px 1px at 95% 45%, rgba(255,125,10,0.10), transparent);
    pointer-events: none;
}

/* ============================================
   TOP BAR PREMIUM
   ============================================ */
.top-bar {
    background: rgba(255, 252, 248, 0.95);
    backdrop-filter: blur(16px);
    padding: 10px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 125, 10, 0.12);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 30px rgba(0,0,0,0.04);
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-area a {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo-area img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.06));
    transition: transform 0.3s ease;
}

.logo-area img:hover {
    transform: scale(1.05) rotate(-2deg);
}

.logo-area h1 {
    font-size: 24px;
    color: #1e2a3a;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin: 0;
    line-height: 1.2;
}

.logo-area a:hover h1 {
    color: #e67e22;
}

.logo-area h1 .destaque {
    color: #e67e22;
    position: relative;
}

.logo-area h1 .destaque::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #e67e22, #f39c12);
    border-radius: 2px;
}

.logo-area .sub {
    font-size: 10px;
    color: #5a7a8a;
    font-weight: 600;
    display: block;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 2px;
}

/* ============================================
   MENU MODERNO
   ============================================ */
.menu {
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: wrap;
}

.menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.menu a:not(.btn-login)::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #e67e22, #f39c12);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.menu a:not(.btn-login):hover::after {
    width: 40%;
}

.menu a:not(.btn-login):hover {
    color: #e67e22;
    background: rgba(230, 126, 34, 0.04);
}

.menu a.ativo {
    color: #e67e22;
}

.menu a.ativo::after {
    width: 40%;
}

.menu a i {
    margin-right: 6px;
    font-size: 13px;
}

.menu .btn-login {
    background: linear-gradient(135deg, #2980b9, #1a5276);
    color: white !important;
    padding: 10px 28px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 4px 20px rgba(41, 128, 185, 0.25);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.menu .btn-login::after {
    display: none;
}

.menu .btn-login:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px rgba(41, 128, 185, 0.35);
    background: linear-gradient(135deg, #3498db, #1a5276);
}

.menu .btn-sair {
    background: rgba(198, 40, 40, 0.08);
    color: #c62828 !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.3s ease;
    border: 1px solid rgba(198, 40, 40, 0.15);
}

.menu .btn-sair::after {
    display: none;
}

.menu .btn-sair:hover {
    background: #c62828;
    color: white !important;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 4px 20px rgba(198, 40, 40, 0.25);
}

/* ============================================
   BANNER ELEGANTE
   ============================================ */
/* ============================================
   BANNER ELEGANTE COM ZOOM E TEXTO DESTAQUE
   ============================================ */
.banner {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    background: #1e2a3a;
}

.banner-slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.banner-slide {
    flex: 0 0 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== ZOOM NO HOVER DO BANNER ===== */
.banner:hover .banner-slide img {
    transform: scale(1.05);
}

/* ===== ESCURECIMENTO SUTIL (APENAS PARA DESTACAR O TEXTO) ===== */
.banner-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.2) 40%,
        rgba(0, 0, 0, 0.1) 60%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 1;
}

.banner-texto {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    padding: 30px 40px;
    width: 100%;
    max-width: 700px;
    z-index: 2;
    animation: fadeInUp 0.8s ease;
    /* ===== FUNDO ESCURO APENAS ATRÁS DO TEXTO ===== */
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(2px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
}

.banner-texto h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.banner-texto h2 .destaque {
    color: #f39c12;
    text-shadow: 0 0 30px rgba(243, 156, 18, 0.3);
}

.banner-texto p {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 25px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.banner-texto .btn-banner {
    display: inline-block;
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: white;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 30px rgba(230, 126, 34, 0.4);
}

.banner-texto .btn-banner:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 40px rgba(230, 126, 34, 0.6);
}

/* ===== INDICADORES DO BANNER ===== */
.banner-indicadores {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.banner-indicadores span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-indicadores span.ativo {
    background: #e67e22;
    transform: scale(1.2);
}

.banner-indicadores span:hover {
    background: rgba(243, 156, 18, 0.6);
}
.banner-texto h2 .destaque {
    color: #f39c12;
    text-shadow: 0 0 30px rgba(243, 156, 18, 0.3);
    position: relative;
}

.banner-texto h2 .destaque::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f39c12, transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: scaleX(0); opacity: 0; }
    50% { transform: scaleX(1); opacity: 1; }
    100% { transform: scaleX(0); opacity: 0; }
}
.banner-texto .btn-banner {
    /* ... existente ... */
    animation: pulseBtn 2.5s ease-in-out infinite;
}

@keyframes pulseBtn {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 30px rgba(230, 126, 34, 0.4);
    }
    50% { 
        transform: scale(1.03);
        box-shadow: 0 8px 45px rgba(230, 126, 34, 0.6);
    }
}

/* ============================================
   SEÇÃO DESTAQUE (CTA)
   ============================================ */
.destaque-section {
    text-align: center;
    padding: 60px 20px 40px;
    background: #f8f6f0;
}

.destaque-section h2 {
    font-size: 34px;
    color: #1e2a3a;
    font-weight: 700;
}

.destaque-section h2 .destaque {
    color: #e67e22;
    position: relative;
}

.destaque-section h2 .destaque::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #e67e22, #f39c12);
    border-radius: 3px;
}

.destaque-section p {
    font-size: 16px;
    color: #6a7a8a;
    max-width: 600px;
    margin: 10px auto 25px;
    line-height: 1.8;
}

.destaque-section .btn-cta {
    display: inline-block;
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: white;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 30px rgba(230, 126, 34, 0.3);
}

.destaque-section .btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(230, 126, 34, 0.5);
}

/* ============================================
   MODELOS EM GRADE
   ============================================ */
.modelos-section {
    padding: 40px 20px 60px;
    max-width: 1300px;
    margin: 0 auto;
    background: white;
}

.modelos-section h2 {
    text-align: center;
    font-size: 30px;
    color: #1e2a3a;
    font-weight: 700;
}

.modelos-section h2 .destaque {
    color: #e67e22;
}

.modelos-section .subtexto {
    text-align: center;
    color: #6a7a8a;
    font-size: 16px;
    margin-bottom: 30px;
}

.grid-modelos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.card-modelo {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.4s ease;
    border: 1px solid rgba(230, 126, 34, 0.06);
}

.card-modelo:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border-color: rgba(230, 126, 34, 0.15);
}

.card-modelo .thumb-container {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background: #1e2a3a;
}

.card-modelo .thumb-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card-modelo:hover .thumb-container img {
    transform: scale(1.08);
}

.card-modelo .thumb-container .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card-modelo:hover .thumb-container .overlay {
    opacity: 1;
}

.card-modelo .thumb-container .overlay span {
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 20px rgba(230, 126, 34, 0.4);
    transition: transform 0.3s ease;
}

.card-modelo:hover .thumb-container .overlay span {
    transform: scale(1.05);
}

.card-modelo .card-body {
    padding: 16px 18px 18px;
    background: white;
}

.card-modelo .card-body h3 {
    font-size: 15px;
    color: #1e2a3a;
    margin-bottom: 4px;
    font-weight: 700;
}

.card-modelo .card-body p {
    font-size: 13px;
    color: #6a7a8a;
    line-height: 1.4;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-modelo .card-body .badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.card-modelo .card-body .badge {
    display: inline-block;
    font-size: 9px;
    padding: 3px 12px;
    border-radius: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.card-modelo .card-body .badge.resolucao {
    background: rgba(230, 126, 34, 0.1);
    color: #e67e22;
}

.card-modelo .card-body .badge.cargo {
    background: rgba(142, 68, 173, 0.1);
    color: #8e44ad;
}

.card-modelo .card-body .badge.cargo.federal {
    background: rgba(41, 128, 185, 0.15);
    color: #2980b9;
}

.card-modelo .card-body .badge.cargo.estadual {
    background: rgba(46, 204, 113, 0.15);
    color: #27ae60;
}

.card-modelo .card-body .badge.cargo.vereador {
    background: rgba(142, 68, 173, 0.15);
    color: #8e44ad;
}

.card-modelo .card-body .badge.cargo.governador {
    background: rgba(230, 126, 34, 0.15);
    color: #e67e22;
}

.card-modelo .card-body .badge.cargo.senador {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
}

.card-modelo .card-body .badge.cargo.prefeito {
    background: rgba(52, 152, 219, 0.15);
    color: #2980b9;
}

.card-modelo .card-body .badge.cargo.presidente {
    background: rgba(241, 196, 15, 0.2);
    color: #d4ac0d;
}

/* ============================================
   ANIMAÇÕES
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

.card-modelo {
    animation: fadeInUp 0.6s ease forwards;
}

.card-modelo:nth-child(2) { animation-delay: 0.1s; }
.card-modelo:nth-child(3) { animation-delay: 0.2s; }
.card-modelo:nth-child(4) { animation-delay: 0.3s; }
.card-modelo:nth-child(5) { animation-delay: 0.4s; }
.card-modelo:nth-child(6) { animation-delay: 0.5s; }
.card-modelo:nth-child(7) { animation-delay: 0.6s; }
.card-modelo:nth-child(8) { animation-delay: 0.7s; }

/* ============================================
   RODAPÉ PREMIUM
   ============================================ */
.rodape {
    background: linear-gradient(135deg, #1a2533, #0d1a26);
    color: rgba(255,255,255,0.7);
    padding: 40px 30px 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.rodape .container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
}

.rodape .container h4 {
    color: #f39c12;
    font-size: 16px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rodape .container p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255,255,255,0.5);
}

.rodape .container a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 13px;
    line-height: 2;
    transition: color 0.3s ease;
}

.rodape .container a:hover {
    color: #f39c12;
}

.rodape .copy {
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.2);
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */
@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        gap: 12px;
        padding: 12px 20px;
    }

    .menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px;
    }

    .menu a {
        font-size: 13px;
        padding: 8px 16px;
    }

    .menu .btn-login {
        padding: 8px 20px;
        font-size: 12px;
    }

    .banner {
        height: 350px;
    }

    .banner-texto h2 {
        font-size: 28px;
    }

    .banner-texto p {
        font-size: 15px;
    }

    .destaque-section h2 {
        font-size: 26px;
    }

    .modelos-section h2 {
        font-size: 24px;
    }

    .grid-modelos {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }

    .rodape .container {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .top-bar {
        padding: 10px 16px;
    }

    .logo-area h1 {
        font-size: 20px;
    }

    .logo-area img {
        height: 38px;
    }

    .logo-area .sub {
        font-size: 9px;
    }

    .banner {
        height: 280px;
    }

    .banner-texto h2 {
        font-size: 22px;
    }

    .banner-texto p {
        font-size: 14px;
    }

    .banner-texto .btn-banner {
        padding: 10px 24px;
        font-size: 14px;
    }

    .grid-modelos {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .btn-cta {
        padding: 10px 24px;
        font-size: 14px;
    }

    .menu a {
        font-size: 12px;
        padding: 6px 12px;
    }

    .menu .btn-login {
        padding: 6px 16px;
        font-size: 11px;
    }

    .menu a i {
        margin-right: 4px;
        font-size: 11px;
    }

    .rodape .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
       /* ===== SEÇÃO CONSULTA ===== */
        .consulta-section {
            text-align: center;
            padding: 50px 20px 60px;
            background: #f8f6f0;
            border-top: 1px solid rgba(230, 126, 34, 0.08);
            border-bottom: 1px solid rgba(230, 126, 34, 0.08);
        }

        .consulta-section .consulta-icon {
            font-size: 48px;
            color: #e67e22;
            margin-bottom: 15px;
        }

        .consulta-section h2 {
            font-size: 28px;
            color: #1e2a3a;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .consulta-section h2 .destaque {
            color: #e67e22;
        }

        .consulta-section p {
            font-size: 16px;
            color: #6a7a8a;
            max-width: 550px;
            margin: 0 auto 25px;
            line-height: 1.7;
        }

        .consulta-section .btn-consulta {
            display: inline-block;
            background: linear-gradient(135deg, #2980b9, #1a5276);
            color: white;
            padding: 14px 45px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 16px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 25px rgba(41, 128, 185, 0.3);
        }

        .consulta-section .btn-consulta:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 40px rgba(41, 128, 185, 0.45);
            background: linear-gradient(135deg, #3498db, #1a5276);
        }

        .consulta-section .btn-consulta i {
            margin-right: 8px;
        }

        @media (max-width: 480px) {
            .consulta-section {
                padding: 35px 16px 40px;
            }
            .consulta-section h2 {
                font-size: 22px;
            }
            .consulta-section p {
                font-size: 14px;
            }
            .consulta-section .btn-consulta {
                padding: 12px 30px;
                font-size: 14px;
            }
        }