.produto-title-spacing {
    margin-top: 120px;
}
/* =================================================================== */
/* ESTILOS DA P�GINA DE PRODUTOS                                     */
/* =================================================================== */

:root {
    --primary-red: #d62828;
    --primary-red-light: #ff4444;
    --dark-bg: #0a0a0a;
    --dark-bg-secondary: #1a1a1a;
    --card-bg: #1a1a1a;
    --text-light: #ffffff;
    --text-muted: #999999;
    --text-gray: #cccccc;
}

.product-card {
    background-color: var(--dark-bg-secondary);
    border: 1px solid #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

.product-card-img-container {
    overflow: hidden;
}

.product-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que a imagem preencha o espa�o sem distorcer */
    transition: transform 0.4s ease;
}

.product-card:hover .product-card-img {
    transform: scale(1.05); /* Efeito de zoom sutil na imagem */
}

.product-card-img-placeholder {
    width: 100%;
    height: 100%;
    background-color: #2a2a2a;
}

.product-name {
    line-height: 1.2;
}

.product-description {
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1; /* Faz a descri��o ocupar o espa�o dispon�vel, empurrando o bot�o para baixo */
}

/* =================================================================== */
/* HERO SECTION                                                       */
/* =================================================================== */

.produtos-hero {
    min-height: 70vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
}

.produtos-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(214, 40, 40, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(214, 40, 40, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.produtos-hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(214, 40, 40, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(214, 40, 40, 0.15);
    border: 1px solid rgba(214, 40, 40, 0.3);
    border-radius: 50px;
    color: var(--primary-red);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.hero-badge i {
    font-size: 1rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 2rem;
}

.hero-stats .stat-item {
    text-align: center;
}

.hero-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-red);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.hero-stats .stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(214, 40, 40, 0.3);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(214, 40, 40, 0.5);
    border-radius: 50%;
    color: var(--primary-red);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.scroll-indicator a:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: white;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* =================================================================== */
/* FILTER SECTION                                                     */
/* =================================================================== */

.filter-section {
    background: var(--dark-bg);
    padding: 2rem 0;
    border-bottom: 1px solid rgba(214, 40, 40, 0.15);
    position: sticky;
    top: 80px;
    z-index: 100;
}

.filter-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-weight: 600;
    white-space: nowrap;
}

.filter-label i {
    color: var(--primary-red);
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: rgba(214, 40, 40, 0.5);
    color: var(--text-light);
    background: rgba(214, 40, 40, 0.1);
}

.filter-btn.active {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: white;
    box-shadow: 0 4px 15px rgba(214, 40, 40, 0.3);
}

.filter-btn i {
    font-size: 0.85rem;
}

/* =================================================================== */
/* PRODUCTS SECTION                                                   */
/* =================================================================== */

.produtos-section {
    background: var(--dark-bg);
    padding: 4rem 0;
    min-height: 50vh;
}

/* Product Card Wrapper */
.product-card-wrapper {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.product-card-wrapper.filtering {
    opacity: 0.5;
    transform: scale(0.98);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Product Card Link */
.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.product-card-link:hover {
    color: inherit;
}

/* Product Card */
.product-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(214, 40, 40, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(214, 40, 40, 0.08);
}

/* Accent line no topo */
.product-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), rgba(214, 40, 40, 0.3));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.product-card:hover .product-card-accent {
    opacity: 1;
}

/* Product Image Section */
.product-image-section {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image {
    transform: scale(1.08);
}

.product-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(214, 40, 40, 0.08) 0%, transparent 100%);
}

.product-image-placeholder i {
    font-size: 3.5rem;
    color: rgba(214, 40, 40, 0.25);
}

/* Gradient overlay na imagem */
.product-image-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    pointer-events: none;
}

/* Category badge sobre a imagem */
.product-category {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(214, 40, 40, 0.85);
    padding: 5px 12px;
    border-radius: 6px;
    z-index: 2;
    backdrop-filter: blur(4px);
}

.product-category i {
    font-size: 0.6rem;
}

/* Product Content Section */
.product-content-section {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.4rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.product-card:hover .product-title {
    color: var(--primary-red);
}

.product-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    font-weight: 500;
    line-height: 1.4;
}

.product-description {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.product-footer {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.product-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-red);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-card:hover .product-btn {
    gap: 0.75rem;
}

.product-btn i {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.product-card:hover .product-btn i {
    transform: translateX(4px);
}

/* =================================================================== */
/* EMPTY STATE                                                        */
/* =================================================================== */

.empty-state {
    text-align: center;
    padding: 5rem 2rem;
}

.empty-state .empty-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: rgba(214, 40, 40, 0.1);
    border: 2px dashed rgba(214, 40, 40, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-state .empty-icon i {
    font-size: 3.5rem;
    color: rgba(214, 40, 40, 0.5);
}

.empty-state h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.empty-state p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* =================================================================== */
/* FEATURES SECTION                                                   */
/* =================================================================== */

.features-section {
    background: var(--dark-bg-secondary);
    padding: 5rem 0;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(214, 40, 40, 0.1);
    border: 1px solid rgba(214, 40, 40, 0.2);
    border-radius: 50px;
    color: var(--primary-red);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 0;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(214, 40, 40, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(214, 40, 40, 0.15), rgba(214, 40, 40, 0.05));
    border: 2px solid rgba(214, 40, 40, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--primary-red);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: rotateY(180deg);
}

.feature-card:hover .feature-icon i {
    color: white;
}

.feature-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* =================================================================== */
/* CTA SECTION                                                        */
/* =================================================================== */

.cta-section {
    background: var(--dark-bg);
    padding: 5rem 0;
}

.cta-card {
    background: linear-gradient(135deg, rgba(214, 40, 40, 0.15) 0%, rgba(214, 40, 40, 0.05) 100%);
    border: 1px solid rgba(214, 40, 40, 0.3);
    border-radius: 24px;
    padding: 3.5rem;
}

.cta-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--primary-red);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(214, 40, 40, 0.4);
}

.cta-btn:hover {
    background: var(--primary-red-light);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(214, 40, 40, 0.5);
}

.cta-btn i {
    transition: transform 0.3s ease;
}

.cta-btn:hover i {
    transform: translateX(5px);
}

/* =================================================================== */
/* RESPONSIVE                                                         */
/* =================================================================== */

@media (max-width: 1199px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .product-content-section {
        padding: 1.25rem;
    }

    .product-title {
        font-size: 1.1rem;
    }

    .product-image-section {
        height: 200px;
    }
}

@media (max-width: 991px) {
    .produtos-hero {
        min-height: 60vh;
        padding: 140px 0 80px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .hero-stats .stat-number {
        font-size: 2rem;
    }

    .filter-section {
        position: relative;
        top: 0;
    }

    .filter-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-image-section {
        height: 190px;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-card {
        padding: 2.5rem;
        text-align: center;
    }

    .cta-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 767px) {
    .produtos-hero {
        min-height: auto;
        padding: 120px 0 60px;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 18px;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .hero-stats .stat-number {
        font-size: 1.75rem;
    }
    
    .hero-stats .stat-label {
        font-size: 0.75rem;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .filter-buttons {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .produtos-section {
        padding: 3rem 0;
    }
    
    .product-image-section {
        height: 180px;
    }

    .product-content-section {
        padding: 1.15rem;
    }

    .product-title {
        font-size: 1.05rem;
    }

    .product-description {
        -webkit-line-clamp: 2;
        font-size: 0.8rem;
    }

    .product-subtitle {
        font-size: 0.8rem;
    }
    
    .features-section {
        padding: 4rem 0;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
    }
    
    .feature-icon i {
        font-size: 1.75rem;
    }
    
    .cta-section {
        padding: 4rem 0;
    }
    
    .cta-card {
        padding: 2rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 1.85rem;
    }
    
    .hero-stats .stat-item {
        min-width: 80px;
    }
    
    .filter-btn {
        padding: 0.45rem 0.85rem;
        font-size: 0.75rem;
    }
    
    .product-btn {
        width: 100%;
        justify-content: center;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}
/* ============================================================= */
/* LANDING PAGE DE SOFTWARES - MENU ÂNCORA + SEÇÕES             */
/* ============================================================= */
html {
    scroll-behavior: smooth;
}

/* Menu de navegação dos softwares */
.software-nav-section {
    background: var(--dark-bg-secondary);
    border-top: 1px solid #2a2a2a;
    border-bottom: 1px solid #2a2a2a;
    padding: 2.5rem 0;
}

.software-nav-title {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.software-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.software-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.4rem;
    background: var(--dark-bg);
    border: 1px solid #333;
    border-radius: 50px;
    color: var(--text-gray);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.software-nav-btn i {
    color: var(--primary-red);
    transition: color 0.3s ease;
}

.software-nav-btn:hover {
    background: rgba(214, 40, 40, 0.12);
    border-color: var(--primary-red);
    color: var(--text-light);
    transform: translateY(-2px);
}

.software-nav-btn.active {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: #fff;
}

.software-nav-btn.active i {
    color: #fff;
}

/* Seções detalhadas */
.software-detail {
    padding: 5rem 0;
    scroll-margin-top: 120px;
    background: var(--dark-bg);
}

.software-detail-reverse {
    background: var(--dark-bg-secondary);
}

.software-detail-img-box {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid #2a2a2a;
    background: #000;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.software-detail-img {
    width: 100%;
    height: auto;
    display: block;
}

.software-detail-img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 320px;
    background: var(--dark-bg-secondary);
}

.software-detail-img-placeholder i {
    font-size: 5rem;
    color: #333;
}

.software-detail-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    background: rgba(214, 40, 40, 0.12);
    border: 1px solid rgba(214, 40, 40, 0.4);
    border-radius: 50px;
    color: var(--primary-red);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.25rem;
}

.software-detail-title {
    font-family: 'EurostileBold', 'Michroma', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.software-detail-subtitle {
    font-size: 1.2rem;
    color: var(--primary-red-light);
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.software-detail-text {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.software-detail-text img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

.software-detail-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.software-detail-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: var(--text-gray);
    margin-bottom: 0.6rem;
    line-height: 1.5;
}

.software-detail-features li i {
    color: var(--primary-red);
    margin-top: 4px;
}

.software-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.software-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.software-btn-primary {
    background: var(--primary-red);
    color: #fff;
    box-shadow: 0 8px 24px rgba(214, 40, 40, 0.35);
}

.software-btn-primary:hover {
    background: var(--primary-red-light);
    color: #fff;
    transform: translateY(-3px);
}

.software-btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 1px solid #444;
}

.software-btn-outline:hover {
    border-color: var(--primary-red);
    color: var(--text-light);
    background: rgba(214, 40, 40, 0.1);
}

@media (max-width: 767px) {
    .software-detail {
        padding: 3rem 0;
    }
    .software-detail-title {
        font-size: 1.9rem;
    }
    .software-detail-actions {
        flex-direction: column;
    }
    .software-btn {
        justify-content: center;
    }
}

/* ============================================================= */
/* LANDING PAGE DE SOFTWARES (estilo moderno, tema dark)        */
/* ============================================================= */
.lp-section-title {
    text-align: center;
    font-family: 'EurostileBold', 'Michroma', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 3.5rem;
    letter-spacing: 0.01em;
}

.lp-section-title span {
    color: var(--primary-red);
}

/* ---------- Botões ---------- */
.lp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.95rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.lp-btn-primary {
    background: var(--primary-red);
    color: #fff;
    box-shadow: 0 10px 28px rgba(214, 40, 40, 0.35);
}

.lp-btn-primary:hover {
    background: var(--primary-red-light);
    color: #fff;
    transform: translateY(-3px);
}

.lp-btn-lg {
    padding: 1.1rem 2.6rem;
    font-size: 1.1rem;
}

.lp-img-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-height: 280px;
    background: var(--dark-bg-secondary);
    border: 1px solid #2a2a2a;
    border-radius: 1rem;
    color: #444;
}

.lp-img-placeholder i {
    font-size: 4rem;
}

.lp-img-placeholder span {
    color: var(--text-muted);
    font-weight: 600;
}

/* ---------- HERO ---------- */
.lp-hero {
    position: relative;
    padding: 160px 0 90px;
    background:
        radial-gradient(circle at 75% 30%, rgba(214, 40, 40, 0.18), transparent 55%),
        var(--dark-bg);
    overflow: hidden;
}

.lp-hero-kicker {
    font-family: 'EurostileBold', 'Michroma', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-red);
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
}

.lp-hero-logo {
    display: block;
    height: 90px;
    width: auto;
    max-width: 100%;
    margin-bottom: 1.25rem;
    object-fit: contain;
}

@media (max-width: 767px) {
    .lp-hero-logo { height: 64px; }
}

.lp-hero-title {
    font-family: 'EurostileBold', 'Michroma', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.lp-hero-text {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.lp-hero-img-box {
    border-radius: 1rem;
    overflow: hidden;
    background: var(--dark-bg-secondary);
    border: 1px solid #2a2a2a;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    padding: 1.5rem;
}

.lp-hero-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* ---------- BLOCOS ALTERNADOS ---------- */
.lp-blocos {
    padding: 5rem 0;
    background: var(--dark-bg);
}

.lp-bloco {
    margin-bottom: 5rem;
}

.lp-bloco:last-child {
    margin-bottom: 0;
}

.lp-bloco-img-box {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid #2a2a2a;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.lp-bloco-img {
    width: 100%;
    height: auto;
    display: block;
}

/* ---------- Lightbox: clique para ampliar ---------- */
.lp-zoomable {
    cursor: zoom-in;
    transition: filter 0.2s ease;
}

.lp-zoomable:hover {
    filter: brightness(1.06);
}

body.lp-lightbox-lock {
    overflow: hidden;
}

.lp-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 3vh 3vw;
    background: rgba(0, 0, 0, 0.9);
    cursor: zoom-out;
}

.lp-lightbox.open {
    display: flex;
}

.lp-lightbox-img {
    max-width: 96vw;
    max-height: 92vh;
    width: auto;
    height: auto;
    border-radius: 0.6rem;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
    cursor: default;
    animation: lpZoomIn 0.2s ease;
}

@keyframes lpZoomIn {
    from { transform: scale(0.94); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

.lp-lightbox-close {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.lp-lightbox-close:hover {
    background: #d62828;
}

.lp-bloco-title {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.lp-bloco-text {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.8rem;
}

/* ---------- LISTA DE RECURSOS ---------- */
.lp-recursos {
    padding: 5rem 0;
    background: var(--dark-bg-secondary);
}

.lp-recursos-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lp-recursos-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 1.25rem;
    border-radius: 0.75rem;
    color: var(--text-gray);
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    border-left: 3px solid transparent;
}

.lp-recursos-item i {
    color: #555;
    font-size: 1.3rem;
    transition: color 0.25s ease;
}

.lp-recursos-item:hover {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-light);
}

.lp-recursos-item.active {
    background: var(--dark-bg);
    color: var(--text-light);
    border-left-color: var(--primary-red);
}

.lp-recursos-item.active i {
    color: var(--primary-red);
}

.lp-recursos-stage {
    position: relative;
    min-height: 320px;
}

.lp-recursos-panel {
    display: none;
    animation: lpFade 0.4s ease;
}

.lp-recursos-panel.active {
    display: block;
}

.lp-recursos-panel img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    border: 1px solid #2a2a2a;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

@keyframes lpFade {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ---------- ETAPAS ---------- */
.lp-etapas {
    padding: 5rem 0;
    background: var(--dark-bg);
}

.lp-etapa-card {
    height: 100%;
    background: var(--dark-bg-secondary);
    border: 1px solid #2a2a2a;
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.lp-etapa-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
}

.lp-etapa-step {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-red);
    margin-bottom: 0.75rem;
}

.lp-etapa-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.lp-etapa-text {
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* ---------- EMPTY ---------- */
.lp-empty {
    padding: 6rem 0;
    color: var(--text-muted);
}

.lp-empty i {
    font-size: 4rem;
    color: #333;
    display: block;
    margin-bottom: 1rem;
}

@media (max-width: 767px) {
    .lp-hero { padding: 120px 0 50px; }
    .lp-hero-kicker { font-size: 2.6rem; }
    .lp-hero-title { font-size: 1.8rem; }
    .lp-section-title { font-size: 1.7rem; margin-bottom: 2.5rem; }
    .lp-bloco { margin-bottom: 3rem; }
    .lp-blocos, .lp-recursos, .lp-etapas { padding: 3rem 0; }
}

/* ============================================================= */
/* HERO: MAPA DO BRASIL ANIMADO (rede de agências, neon)        */
/* ============================================================= */
.lp-brasil {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Anéis de radar girando */
.lp-ring {
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.lp-ring-1 {
    width: 98%; height: 98%;
    border: 1px dashed rgba(214, 40, 40, 0.25);
    box-shadow: inset 0 0 40px rgba(214, 40, 40, 0.12);
    animation: lp-spin 44s linear infinite;
}
.lp-ring-2 {
    width: 76%; height: 76%;
    border: 1px solid rgba(214, 40, 40, 0.30);
    border-top-color: #ff3b3b;
    border-right-color: rgba(255, 59, 59, 0.6);
    animation: lp-spin-rev 26s linear infinite;
}
.lp-ring-3 {
    width: 54%; height: 54%;
    border: 1px solid rgba(214, 40, 40, 0.15);
    border-bottom-color: rgba(255, 70, 70, 0.7);
    animation: lp-spin 18s linear infinite;
}
@keyframes lp-spin { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes lp-spin-rev { to { transform: translate(-50%, -50%) rotate(-360deg); } }

/* SVG do mapa */
.lp-brasil-svg {
    position: relative;
    width: 94%;
    height: 94%;
    overflow: visible;
    z-index: 2;
}
.lp-map {
    fill: rgba(214, 40, 40, 0.06);
    stroke: #ff3636;
    stroke-width: 2;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
    animation: lp-map-glow 3.5s ease-in-out infinite;
}
@keyframes lp-map-glow {
    0%, 100% { filter: drop-shadow(0 0 4px rgba(255, 50, 50, 0.7)); }
    50%      { filter: drop-shadow(0 0 13px rgba(255, 70, 70, 1)); }
}
.lp-links line {
    stroke: #ff4040;
    stroke-width: 2.5;
    stroke-dasharray: 7 13;
    opacity: 0.45;
    animation: lp-flow 1.6s linear infinite;
}
@keyframes lp-flow { to { stroke-dashoffset: -40; } }
.lp-node {
    fill: #ff5a5a;
    filter: drop-shadow(0 0 4px #ff3030);
    animation: lp-twinkle 2.4s ease-in-out infinite;
}
@keyframes lp-twinkle {
    0%, 100% { opacity: 0.45; }
    50%      { opacity: 1; }
}

/* Texto "+100 Agências" */
.lp-brasil-stat {
    position: absolute;
    right: 1%;
    top: 50%;
    transform: translateY(-50%);
    width: 46%;
    text-align: left;
    z-index: 3;
    pointer-events: none;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
}
.lp-stat-top {
    display: block;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    opacity: 0.9;
}
.lp-stat-num {
    display: block;
    font-family: 'EurostileBold', 'Michroma', sans-serif;
    font-size: 4rem;
    line-height: 1;
    font-weight: 800;
    color: #ff2d2d;
    animation: lp-num-pulse 2.5s ease-in-out infinite;
}
@keyframes lp-num-pulse {
    0%, 100% { text-shadow: 0 0 12px rgba(255, 45, 45, 0.6); }
    50%      { text-shadow: 0 0 28px rgba(255, 60, 60, 1); }
}
.lp-stat-sub {
    display: block;
    color: #eee;
    font-size: 0.95rem;
    line-height: 1.35;
    margin-top: 6px;
}
.lp-stat-sub strong { color: #ff3b3b; }

@media (max-width: 991px) {
    .lp-brasil { max-width: 440px; }
    .lp-stat-num { font-size: 3rem; }
    .lp-stat-top { font-size: 0.9rem; }
    .lp-stat-sub { font-size: 0.82rem; }
}
