/* =============================================
   BKG — Custom CSS
   Minimalist Black & White Theme
   ============================================= */

:root {
    --bkg-black: #0a0a0a;
    --bkg-dark: #111111;
    --bkg-gray-900: #1a1a1a;
    --bkg-gray-800: #222222;
    --bkg-gray-700: #333333;
    --bkg-gray-400: #888888;
    --bkg-white: #ffffff;
    --bkg-off-white: #f5f5f5;
    --bkg-accent: #e0e0e0;
    --bkg-neon: #00ff88;
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
}

/* ---- Reset & Base ---- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    background: var(--bkg-black);
}

body {
    font-family: var(--font-primary);
    color: var(--bkg-white);
    background: transparent;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
    touch-action: auto;
}

body > canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: transparent;
}

#tubesCanvas {
    z-index: 0 !important;
}

#neonGrid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(circle 250px at var(--mouse-x, 50%) var(--mouse-y, 50%), 
        rgba(0, 255, 136, 0.3) 0%,
        rgba(0, 255, 136, 0.1) 40%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.15s ease;
}

#neonGrid.active {
    opacity: 1;
}


#neural-network-canvas {
    z-index: -1 !important;
}

#gridCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

::selection {
    background: var(--bkg-white);
    color: var(--bkg-black);
}

.ls-3 {
    letter-spacing: 3px;
}

.fw-800 {
    font-weight: 800;
}

.py-6 {
    padding-top: 7rem;
    padding-bottom: 7rem;
}

.mw-600 {
    max-width: 600px;
}

/* ---- Navbar ---- */
#mainNav {
    background: rgba(10, 10, 10, 0.85);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 1rem 0;
    transition: all 0.4s ease;
}

#mainNav.scrolled {
    padding: 0.5rem 0;
    background: rgba(10, 10, 10, 0.95);
}

.brand-text {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--bkg-white);
}

/* Logo images */
.navbar-logo {
    height: 32px;
    width: auto;
    transition: opacity 0.3s;
}

.navbar-logo:hover {
    opacity: 0.8;
}

.footer-logo {
    height: 36px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-logo:hover {
    opacity: 1;
}

.navbar-nav .nav-link {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    text-transform: uppercase;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--bkg-neon);
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.5);
}

.navbar-toggler {
    border: 1px solid rgba(255,255,255,0.2);
}

.navbar-toggler-icon {
    filter: invert(1);
}

/* ---- All buttons glow green on hover ---- */
.btn:not(.btn-close):hover {
    border-color: var(--bkg-neon) !important;
    color: var(--bkg-neon) !important;
    background: transparent !important;
    box-shadow: 0 0 16px rgba(0, 255, 136, 0.4) !important;
    transition: all 0.3s ease;
}

/* Solid buttons (btn-light, btn-white) get neon fill instead */
.btn-light:hover,
.btn-white:hover {
    background: var(--bkg-neon) !important;
    border-color: var(--bkg-neon) !important;
    color: #000 !important;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5) !important;
}

/* ---- Interactive Background Canvas ---- */
#neural-network-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background: transparent;
}

/* Ensure all main content stays above canvas */
nav, section, footer {
    position: relative;
    z-index: 1;
}

/* Modal must use Bootstrap's own z-index (1055+) */
.modal {
    position: fixed;
}

/* Soft fade for better text readability */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.01) 100%);
    pointer-events: none;
    z-index: 0;
}

/* Hero section enhancement with canvas */
.hero-section {
    background-blend-mode: multiply;
}

/* ---- Hero ---- */
.hero-section {
    min-height: 100vh;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-section.hero-product {
    padding-top: 100px;
    background-image: url('../img/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.hero-section.hero-product::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(10, 10, 10, 0.7);
    z-index: 0;
    pointer-events: none;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.45) 60%,
        rgba(0, 0, 0, 0.30) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.hero-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    z-index: 2;
    pointer-events: none;
}

.hero-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--bkg-neon);
    font-family: var(--font-display);
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.5), 0 0 16px rgba(0, 255, 136, 0.3);
}

.hero-title {
    font-family: var(--font-display);
    line-height: 1.1;
    color: var(--bkg-white);
    text-shadow: 0 0 10px rgba(0,0,0,0.9), 0 0 20px rgba(0,0,0,0.8), 0 0 30px rgba(0,0,0,0.6), 0 0 40px rgba(0,0,0,0.4);
}

.text-stroke {
    color: var(--bkg-white);
    text-shadow: 0 0 10px rgba(0,0,0,0.9), 0 0 20px rgba(0,0,0,0.8), 0 0 30px rgba(0,0,0,0.6), 0 0 40px rgba(0,0,0,0.4);
}

.hero-sub {
    text-shadow: 0 0 3px rgba(0,0,0,0.8), 0 0 6px rgba(0,0,0,0.6), -1px -1px 0 rgba(0,0,0,0.8), 1px -1px 0 rgba(0,0,0,0.8), -1px 1px 0 rgba(0,0,0,0.8), 1px 1px 0 rgba(0,0,0,0.8);
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: hue-rotate(60deg) saturate(1.4) brightness(1.1) contrast(1.05);
    z-index: 0;
}

.hero-bg-logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.parallax-img {
    transform: translateY(0);
    transition: transform 0.1s ease-out;
}

.hero-circle-glow {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    animation: heroGlow 6s ease-in-out infinite;
}

.hero-circle-glow::before {
    content: '';
    position: absolute;
    inset: -30px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.05);
    animation: heroGlow 6s ease-in-out 1s infinite;
}

.hero-circle-glow::after {
    content: '';
    position: absolute;
    inset: -60px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.03);
    animation: heroGlow 6s ease-in-out 2s infinite;
}

@keyframes heroGlow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.08); opacity: 1; }
}

/* ---- Sections ---- */
.section-dark {
    background: transparent;
}

.section-light {
    background: transparent;
    color: var(--bkg-white);
}

.text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

.section-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--bkg-neon);
    font-family: var(--font-display);
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.4);
}

.section-tag-dark {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--bkg-neon);
    font-family: var(--font-display);
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.4);
}

.section-title {
    font-family: var(--font-display);
    color: var(--bkg-white);
}

.section-title-dark {
    font-family: var(--font-display);
    color: var(--bkg-white);
}

/* ---- Orbital Carousel ---- */
.orbital-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.orbital-container {
    position: relative;
    width: 500px;
    height: 500px;
}

.orbital-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: var(--bkg-black);
    border: 2px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(255,255,255,0.1);
}

.orbital-center-logo {
    width: 70%;
    height: auto;
    object-fit: contain;
}

.orbital-center-text {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--bkg-black);
    letter-spacing: 3px;
}



.orbital-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: orbitSpin 30s linear infinite;
}

@keyframes orbitSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.orbital-ring::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    transform: translate(-50%, -50%);
    border: 1px dashed rgba(255,255,255,0.1);
    border-radius: 50%;
}

.orbital-item {
    position: absolute;
    width: 90px;
    height: 90px;
    margin-top: -45px;
    margin-left: -45px;
    border-radius: 50%;
    background: rgba(26, 26, 26, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.orbital-item:hover {
    border-color: var(--bkg-neon);
    background: var(--bkg-gray-800);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4), 0 0 40px rgba(0, 255, 136, 0.15);
    z-index: 20;
}

.orbital-item:hover .orbital-item-label {
    color: var(--bkg-neon);
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.6);
}

.orbital-item:hover .orbital-item-icon {
    color: var(--bkg-neon);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.6);
}

.orbital-item-inner {
    animation: counterSpin 30s linear infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    pointer-events: none;
}

@keyframes counterSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

.orbital-item-icon {
    font-size: 1.5rem;
    color: var(--bkg-white);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.orbital-item-label {
    font-size: 0.55rem;
    color: rgba(255,255,255,0.7);
    margin-top: 2px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* ---- Service Cards ---- */
.service-card {
    background: rgba(255, 255, 255, 0.08);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.12);
    border-color: rgba(0, 255, 136, 0.35);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--bkg-black);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 1.3rem;
    color: var(--bkg-neon);
}

/* ---- Stats ---- */
.stat-card {
    padding: 2rem 1rem;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--bkg-neon);
    line-height: 1;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

.stat-value::before {
    content: '+';
    font-size: 1.5rem;
    vertical-align: super;
    margin-right: 4px;
    opacity: 0.5;
}

.stat-label {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* ---- Advantage Cards ---- */
.advantage-card {
    padding: 2rem;
    background: rgba(26, 26, 26, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    height: 100%;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    border-color: rgba(0, 255, 136, 0.4);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.08);
    transform: translateY(-4px);
}

.advantage-card i {
    color: var(--bkg-neon);
}

/* ---- Blog Cards ---- */
.blog-card {
    background: rgba(26, 26, 26, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.08);
}

.blog-card-img {
    height: 180px;
    background: linear-gradient(135deg, var(--bkg-gray-800), var(--bkg-gray-700));
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.blog-card-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.blog-card-img-content {
    position: relative;
    z-index: 2;
}

.blog-badge {
    background: var(--bkg-neon);
    color: var(--bkg-black);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0,255,136,0.4);
}

.blog-card-body {
    padding: 1.5rem;
}

.blog-link {
    color: var(--bkg-white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: gap 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-link:hover {
    gap: 12px;
    color: var(--bkg-neon);
}

/* ---- Article Images ---- */
.article-image {
    display: block;
    margin: 0 auto;
}

/* ---- Blog Card Images ---- */
.blog-card-analise {
    background-image: url('../img/analise_credito.jpg');
}

.blog-card-guia {
    background-image: url('../img/guia_regua.png');
}

.blog-card-estrategias {
    background-image: url('../img/5_estrategias.png');
}

/* ---- Article Blog Images ---- */
.article-blog-image {
    display: block;
    margin: 0 auto;
}

/* ---- Newsletter ---- */
.section-newsletter {
    background: transparent;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.newsletter-form {
    max-width: 700px;
}

.newsletter-form .form-control {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--bkg-white);
    border-radius: 50px;
    font-size: 0.9rem;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255,255,255,0.4);
}

.newsletter-form .form-control:focus {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.3);
    box-shadow: none;
    color: var(--bkg-white);
}

.btn-white {
    background: var(--bkg-white);
    color: var(--bkg-black);
    border-radius: 50px;
    border: none;
    transition: all 0.3s;
}

.btn-white:hover {
    background: var(--bkg-neon) !important;
    border-color: var(--bkg-neon) !important;
    color: #000 !important;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5) !important;
}

/* ---- Contact Form ---- */
.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    background: rgba(255,255,255,0.07);
    color: var(--bkg-white);
    transition: border-color 0.3s;
}

.contact-form .form-control::placeholder,
.contact-form .form-select::placeholder {
    color: rgba(255,255,255,0.4);
}

.contact-form .form-select option {
    background: var(--bkg-dark);
    color: var(--bkg-white);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 0 0 3px rgba(255,255,255,0.05);
    color: var(--bkg-white);
}

/* ---- Footer ---- */
.footer-section {
    background: transparent;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--bkg-white);
}

.footer-social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social:hover {
    border-color: var(--bkg-neon);
    color: var(--bkg-neon);
    box-shadow: 0 0 12px rgba(0, 255, 136, 0.4);
    transform: translateY(-3px);
}

.sidebar-newsletter-input {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    border-radius: 10px;
}

.sidebar-newsletter-input::placeholder {
    color: rgba(255,255,255,0.4);
}

.sidebar-newsletter-input:focus {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.3);
    box-shadow: none;
    color: #fff;
}

/* ---- Smooth Scroll Indicator ---- */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--bkg-white);
    z-index: 9999;
    transition: width 0.1s;
}

/* ---- Custom Cursor Glow (desktop) ---- */
.cursor-glow {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: left 0.3s ease, top 0.3s ease;
}

/* ---- Utility Classes ---- */
.text-black {
    color: #000;
}

.text-gray-muted {
    color: #777;
}

.text-dark-gray {
    color: var(--bkg-neon);
    text-shadow: 0 0 10px rgba(0,255,136,0.4);
}

.icon-lg {
    font-size: 2rem;
    color: var(--bkg-neon);
    text-shadow: 0 0 10px rgba(0,255,136,0.4);
}

.icon-muted {
    color: var(--bkg-neon);
    text-shadow: 0 0 8px rgba(0,255,136,0.35);
}

.icon-xl-dark {
    font-size: 2.5rem;
    color: var(--bkg-neon);
    text-shadow: 0 0 12px rgba(0,255,136,0.4);
}

.card-dark-bg {
    background: rgba(15, 15, 25, 0.65) !important;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    color: white;
}

.check-circle-fill-muted {
    color: var(--bkg-neon);
    text-shadow: 0 0 8px rgba(0,255,136,0.35);
}

.check-circle-muted {
    color: var(--bkg-neon);
    text-shadow: 0 0 8px rgba(0,255,136,0.35);
}

.progress-bar-light {
    height: 8px;
    background-color: #555;
}

.progress-bar-dark {
    width: 99%;
    background-color: #333;
}

.badge-dark-gray {
    background-color: #333;
    color: white;
}

.badge-medium-gray {
    background-color: #555;
    color: white;
}

.badge-light-gray {
    background-color: #666;
    color: white;
}

.badge-darker-gray {
    background-color: #444;
    color: white;
}

.progress-bar-width-95 {
    width: 95%;
}

.progress-bar-width-98 {
    width: 98%;
}

.progress-bar-width-99 {
    width: 99%;
}

.icon-xl-white {
    font-size: 2.5rem;
    color: var(--bkg-neon);
    text-shadow: 0 0 12px rgba(0,255,136,0.4);
}

/* ---- D-U-N-S Registered Product Page ---- */
.duns-use-case-card {
    transition: all 0.3s ease;
    border-color: rgba(255, 255, 255, 0.1);
}

.duns-use-case-card:hover {
    border-color: var(--bkg-neon) !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.15);
}

.duns-use-case-card .feature-icon {
    font-size: 2.5rem;
    display: inline-block;
    margin-bottom: 0.5rem;
}

/* ---- D&B Finance Analytics Product Page ---- */
.analytics-use-case-card {
    transition: all 0.3s ease;
    border-color: rgba(255, 255, 255, 0.1);
}

.analytics-use-case-card:hover {
    border-color: var(--bkg-neon) !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.15);
}

.analytics-use-case-card .feature-icon {
    font-size: 2.5rem;
    display: inline-block;
    margin-bottom: 0.5rem;
}

/* ---- Generic Bootstrap cards in product pages ---- */
.card.bg-dark.border-secondary {
    transition: all 0.3s ease;
}

.card.bg-dark.border-secondary:hover {
    border-color: var(--bkg-neon) !important;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.15);
    transform: translateY(-4px);
}

.card.h-100.border-0.shadow-sm {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    background: rgba(255, 255, 255, 0.04);
}

.card.h-100.border-0.shadow-sm:hover {
    border-color: var(--bkg-neon) !important;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.15);
    transform: translateY(-4px);
    background: rgba(0, 255, 136, 0.03);
}

/* ---- Assertiva Análise 360 Product Page ---- */
/* Icon color utility classes */
.icon-star-gold {
    font-size: 1.5rem;
    color: #ffc107;
    display: inline-block;
}

.icon-shield-danger {
    font-size: 1.5rem;
    color: #dc3545;
    display: inline-block;
}

.icon-lightning-success {
    font-size: 1.5rem;
    color: #28a745;
    display: inline-block;
}

.icon-chart-primary {
    font-size: 1.5rem;
    color: #0d6efd;
    display: inline-block;
}

.icon-person-primary {
    font-size: 2rem;
    color: #0d6efd;
    display: inline-block;
}

.icon-building-success {
    font-size: 2rem;
    color: #28a745;
    display: inline-block;
}

.icon-monitor-primary {
    font-size: 2.5rem;
    color: #0d6efd;
    display: inline-block;
}

.icon-warning-danger {
    font-size: 2.5rem;
    color: #dc3545;
    display: inline-block;
}

.icon-chart-success {
    font-size: 2.5rem;
    color: #28a745;
    display: inline-block;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(255, 255, 255, 0.05);
    color: inherit;
}

.accordion-button:focus {
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.05);
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .orbital-container {
        width: 350px;
        height: 350px;
    }

    .orbital-center {
        width: 90px;
        height: 90px;
    }

    .orbital-center-text {
        font-size: 1.2rem;
    }

    .orbital-item {
        width: 85px;
        height: 85px;
        margin-top: -42.5px;
        margin-left: -42.5px;
    }

    .orbital-item-icon {
        font-size: 1.1rem;
    }

    .orbital-item-label {
        font-size: 0.65rem;
        color: rgba(255,255,255,0.95);
        max-width: 70px;
        white-space: normal;
        line-height: 1.1;
    }

    .orbital-ring::before {
        width: 280px;
        height: 280px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .stat-value {
        font-size: 2.5rem;
    }

    .newsletter-form .input-group {
        flex-direction: column;
    }

    .newsletter-form .form-control,
    .newsletter-form .btn {
        border-radius: 50px !important;
        width: 100%;
    }
}

@media (max-width: 575px) {
    .orbital-container {
        width: 300px;
        height: 300px;
    }

    .orbital-center {
        width: 75px;
        height: 75px;
    }

    .orbital-center-text {
        font-size: 1rem;
    }

    .orbital-item {
        width: 70px;
        height: 70px;
        margin-top: -35px;
        margin-left: -35px;
    }

    .orbital-item-icon {
        font-size: 0.9rem;
    }

    .orbital-item-label {
        font-size: 0.6rem;
        color: rgba(255,255,255,0.95);
        max-width: 60px;
        white-space: normal;
        line-height: 1.1;
    }

    .orbital-ring::before {
        width: 240px;
        height: 240px;
    }

    .py-6 {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .stat-value {
        font-size: 2rem;
    }
}

/* ---- Toast Notification ---- */
.toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--bkg-white);
    color: var(--bkg-black);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 10000;
}

.toast-notification.show {
    transform: translateY(0);
    opacity: 1;
}

/* =============================================
   Blog Article Pages
   ============================================= */

.article-hero {
    padding-top: 140px;
    padding-bottom: 60px;
    background: var(--bkg-black);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.breadcrumb-dark a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.breadcrumb-dark a:hover { color: var(--bkg-neon); text-shadow: 0 0 6px rgba(0,255,136,0.4); }

.breadcrumb-dark span {
    color: rgba(255,255,255,0.2);
    margin: 0 8px;
}

.breadcrumb-dark span.current {
    color: rgba(255,255,255,0.6);
}

.article-meta {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    color: rgba(255,255,255,0.45);
    font-size: 0.85rem;
    align-items: center;
    margin-top: 1rem;
}

.article-meta i { font-size: 0.8rem; }

.article-body {
    color: rgba(255,255,255,0.82);
    line-height: 1.85;
    font-size: 1.05rem;
}

.article-body h2 {
    font-size: 1.45rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
    font-family: var(--font-display);
}

.article-body h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
    color: rgba(255,255,255,0.9);
}

.article-body p { margin-bottom: 1.25rem; }

.article-body ul,
.article-body ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
    color: rgba(255,255,255,0.8);
}

.article-body li { margin-bottom: 0.5rem; }

.article-body strong { color: #fff; }

.article-body blockquote {
    border-left: 3px solid var(--bkg-neon);
    padding: 0.5rem 0 0.5rem 1.25rem;
    margin: 1.75rem 0;
    color: rgba(255,255,255,0.55);
    font-style: italic;
    font-size: 1.05rem;
}

.article-highlight {
    background: rgba(0,255,136,0.04);
    border: 1px solid rgba(0,255,136,0.2);
    border-left: 3px solid var(--bkg-neon);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.75rem 0;
}

.article-highlight p:last-child { margin-bottom: 0; }

.article-stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 1rem;
    margin: 1.75rem 0;
}

.article-stat-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
}

.article-stat-card .stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--bkg-neon);
    text-shadow: 0 0 16px rgba(0,255,136,0.4);
    line-height: 1;
    font-family: var(--font-display);
}

.article-stat-card .stat-lbl {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    margin-top: 6px;
}

.article-cta {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.post-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 3rem;
}

@media (max-width: 576px) { .post-nav { grid-template-columns: 1fr; } }

.post-nav-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    text-decoration: none;
    color: rgba(255,255,255,0.65);
    transition: all 0.3s;
    font-size: 0.85rem;
    line-height: 1.4;
    display: block;
}

/* ---- Step Card ---- */
.step-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    background: rgba(0,255,136,0.04);
    border-color: rgba(0,255,136,0.35);
    box-shadow: 0 0 20px rgba(0,255,136,0.1);
    transform: translateY(-4px);
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bkg-neon);
    color: var(--bkg-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    box-shadow: 0 0 16px rgba(0,255,136,0.4);
}

/* ---- Segment Card ---- */
.segment-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.segment-card:hover {
    background: rgba(0,255,136,0.04);
    border-color: rgba(0,255,136,0.35);
    box-shadow: 0 0 20px rgba(0,255,136,0.1);
    transform: translateY(-4px);
}

.segment-card .feature-icon {
    font-size: 2.5rem;
    color: var(--bkg-neon);
    text-shadow: 0 0 12px rgba(0,255,136,0.4);
    transition: color 0.3s, text-shadow 0.3s;
}

.segment-card h5 {
    color: var(--bkg-white);
    margin-bottom: 0.5rem;
}

.segment-card p {
    color: rgba(255,255,255,0.65);
    margin: 0;
}

/* ---- Partner Logos ---- */
.partners-section {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.partners-container {
    gap: 1.5rem;
}

.partner-logo {
    max-height: 100px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    filter: brightness(0.95);
}

.partner-logo:hover {
    opacity: 1;
    filter: brightness(1);
}

/* ---- Accordion Dark ---- */
.accordion-dark .accordion-button {
    background: transparent;
    color: var(--bkg-white);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-weight: 500;
    padding: 1.25rem;
}

.accordion-dark .accordion-button:not(.collapsed) {
    background: rgba(255,255,255,0.03);
    color: var(--bkg-white);
    box-shadow: none;
}

.accordion-dark .accordion-button:focus {
    border-color: rgba(255,255,255,0.2);
    box-shadow: none;
}

.accordion-dark .accordion-button::after {
    filter: invert(1);
    opacity: 0.5;
}

.accordion-dark .accordion-button:not(.collapsed)::after {
    opacity: 1;
}

.accordion-dark .accordion-body {
    background: transparent;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    padding: 1.25rem;
}

/* ---- Feature Card ---- */
.feature-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
}

.feature-card:hover {
    background: rgba(0,255,136,0.04);
    border-color: rgba(0,255,136,0.4);
    box-shadow: 0 0 24px rgba(0,255,136,0.1);
    transform: translateY(-8px);
}

.feature-icon {
    font-size: 3rem;
    color: var(--bkg-neon);
    text-shadow: 0 0 12px rgba(0,255,136,0.4);
    margin-bottom: 1rem;
    transition: color 0.3s, text-shadow 0.3s;
}

.feature-card h5 {
    color: var(--bkg-white);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: rgba(255,255,255,0.65);
    margin: 0;
}

/* ---- Product pages: all white cards → dark glass ---- */
.card:not(.bg-dark):not(.bg-secondary) {
    background: rgba(15, 15, 25, 0.65) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    color: var(--bkg-white) !important;
    transition: all 0.3s ease;
}

/* Remove bg-white Bootstrap override (div and card) */
.bg-white.card,
.card.bg-white,
.bg-white:not(body):not(html):not(nav) {
    background: rgba(15, 15, 25, 0.65) !important;
    border-color: rgba(255,255,255,0.1) !important;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    color: var(--bkg-white) !important;
}

/* Keep text colors inside glass cards readable */
.card:not(.bg-dark):not(.bg-secondary) .card-title,
.card:not(.bg-dark):not(.bg-secondary) h5,
.card:not(.bg-dark):not(.bg-secondary) h6 {
    color: var(--bkg-white) !important;
}

.card:not(.bg-dark):not(.bg-secondary) p,
.card:not(.bg-dark):not(.bg-secondary) .text-muted,
.card:not(.bg-dark):not(.bg-secondary) small {
    color: rgba(255,255,255,0.7) !important;
}

/* ---- text-black inside products → white ---- */
.text-black,
span.text-black,
h5.text-black,
.card .text-black,
.card h5.text-black {
    color: rgba(255,255,255,0.95) !important;
}

/* ---- text-success / check-icons → neon green globally ---- */
.text-success,
.bi.text-success {
    color: var(--bkg-neon) !important;
    text-shadow: 0 0 8px rgba(0,255,136,0.35);
}

/* ---- table comparison dashes → muted white ---- */
.bi-dash.text-secondary {
    color: rgba(255,255,255,0.35) !important;
    text-shadow: none;
}

/* ---- All cards: green hover ---- */
.card:not(.bg-dark):not(.bg-secondary):hover {
    border-color: rgba(0,255,136,0.35) !important;
    box-shadow: 0 0 24px rgba(0,255,136,0.1) !important;
    transform: translateY(-4px);
}

/* ---- LGPD modal cards ---- */
.lgpd-agent-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

.lgpd-anpd-card {
    background: rgba(0,255,136,0.04);
    border: 1px solid rgba(0,255,136,0.15);
}

.lgpd-badge {
    background: rgba(0,255,136,0.12);
    border: 1px solid rgba(0,255,136,0.25);
    color: #fff;
    font-weight: 400;
}

.lgpd-principle-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
}

.lgpd-contact-card {
    background: rgba(0,255,136,0.05);
    border: 1px solid rgba(0,255,136,0.2);
}

.badge-xs {
    font-size: .65rem;
}

}

.badge-xs {
    font-size: .65rem;
}

/* ---- Hero Form ---- */
.hero-form-card {
    background: rgba(255,255,255,0.10);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 20px;
    padding: 2rem 2rem 1.5rem;
    box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

.hero-form-input {
    background: rgba(255,255,255,0.12) !important;
    border: 1px solid rgba(255,255,255,0.25) !important;
    color: #fff !important;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: border-color 0.3s, background 0.3s;
}

.hero-form-input::placeholder {
    color: rgba(255,255,255,0.55);
}

.hero-form-input:focus {
    background: rgba(255,255,255,0.18) !important;
    border-color: var(--bkg-neon) !important;
    box-shadow: 0 0 0 3px rgba(0,255,136,0.15) !important;
    color: #fff !important;
    outline: none;
}

.btn-neon {
    background: var(--bkg-neon);
    color: #000;
    border: none;
    font-size: 1rem;
    transition: all 0.3s;
}

.btn-neon:hover {
    background: #00e67a !important;
    color: #000 !important;
    box-shadow: 0 0 24px rgba(0,255,136,0.5) !important;
    transform: translateY(-2px);
}

.btn-hero-whatsapp {
    background: #25D366;
    color: #fff !important;
    border: 2px solid #25D366;
    transition: all 0.3s;
}

.btn-hero-whatsapp:hover {
    background: #1ebe5d !important;
    border-color: #1ebe5d !important;
    color: #fff !important;
    box-shadow: 0 0 20px rgba(37,211,102,0.5) !important;
    transform: translateY(-2px);
}

.hero-form-title {
    font-size: 1.1rem;
}

.hero-form-note {
    color: rgba(255,255,255,0.5);
    font-style: italic;
}

/* ---- WhatsApp Floating Button ---- */
.whatsapp-fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    z-index: 9999;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-fab:hover {
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 6px 28px rgba(37,211,102,0.7);
    color: #fff !important;
}

/* Product page: dark-section info cards hover ---- */
.card.bg-secondary.bg-opacity-10:hover {
    border-color: rgba(0,255,136,0.35) !important;
    box-shadow: 0 0 24px rgba(0,255,136,0.1) !important;
    transform: translateY(-4px);
    transition: all 0.3s ease;
}
.card.bg-secondary.bg-opacity-10 {
    transition: all 0.3s ease;
}

/* ---- Accordion green accents ---- */
.accordion-item {
    background: rgba(15, 15, 25, 0.65) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-radius: 12px !important;
    overflow: hidden;
    transition: box-shadow 0.3s;
    margin-bottom: 0.75rem;
}
.accordion-button {
    background: transparent !important;
    color: var(--bkg-white) !important;
}
.accordion-button:not(.collapsed) {
    color: var(--bkg-neon) !important;
    background: rgba(0,255,136,0.05) !important;
    box-shadow: inset 0 -1px 0 rgba(0,255,136,0.2);
}
.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(0,255,136,0.25);
}
.accordion-button:not(.collapsed)::after {
    filter: hue-rotate(100deg) saturate(3) brightness(1.5);
}
.accordion-button::after {
    filter: brightness(5);
}
.accordion-body {
    background: transparent !important;
    color: rgba(255,255,255,0.75) !important;
}
.accordion-item:has(.accordion-button:not(.collapsed)) {
    box-shadow: 0 0 16px rgba(0,255,136,0.1);
}

/* ---- Product page: check list icons ---- */
.section-dark .bi-check-circle,
.section-dark .bi-check-lg {
    color: var(--bkg-neon) !important;
    text-shadow: 0 0 8px rgba(0,255,136,0.4);
}

/* ---- Product hero section titles (section-light h2) ---- */
.section-light h2.display-5,
.section-light h2.fw-bold {
    color: var(--bkg-white);
}
.section-dark h2.display-5,
.section-dark h2.fw-bold {
    color: var(--bkg-white);
}

/* ---- Product icon classes (colored icons in light sections) ---- */
.icon-star-gold { font-size: 2rem; color: #f59e0b; }
.icon-shield-danger { font-size: 2rem; color: #ef4444; }
.icon-lightning-success { font-size: 2rem; color: var(--bkg-neon); text-shadow: 0 0 10px rgba(0,255,136,0.4); }
.icon-chart-primary { font-size: 2rem; color: var(--bkg-neon); text-shadow: 0 0 10px rgba(0,255,136,0.4); }
.icon-person-primary { font-size: 2.5rem; color: var(--bkg-neon); text-shadow: 0 0 12px rgba(0,255,136,0.4); }
.icon-building-success { font-size: 2.5rem; color: var(--bkg-neon); text-shadow: 0 0 12px rgba(0,255,136,0.4); }
.icon-monitor-primary { font-size: 2rem; color: var(--bkg-neon); }
.icon-warning-danger { font-size: 2rem; color: #ef4444; }
.icon-chart-success { font-size: 2rem; color: var(--bkg-neon); text-shadow: 0 0 10px rgba(0,255,136,0.4); }

.post-nav-item:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-color: rgba(255,255,255,0.18);
}

.post-nav-item small {
    display: block;
    color: rgba(255,255,255,0.35);
    font-size: 0.75rem;
    margin-bottom: 4px;
}

.post-nav-item.text-end { text-align: right; }

/* =============================================
   LOGO WIDGET 3D — Canto inferior direito
   ============================================= */
@keyframes lw-fadeIn {
    from { opacity: 0; transform: translateY(20px) scale(0.92); }
    to   { opacity: 1; transform: translateY(0)   scale(1);    }
}

@keyframes lw-float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-8px); }
}

@keyframes lw-glow-pulse {
    0%, 100% { opacity: 0.45; transform: scale(1);    }
    50%       { opacity: 0.75; transform: scale(1.10); }
}

/* Contêiner fixo no canto inferior direito */
#logoWidget {
    position: absolute;
    bottom: calc(50% - 220px);
    right: 200px;
    width: 440px;
    height: 440px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    perspective-origin: 50% 50%;
    animation: lw-fadeIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

/* Brilho ambiente atrás */
.lw-glow {
    position: absolute;
    inset: -40px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(
        ellipse at center,
        rgba(0, 255, 136, 0.14) 0%,
        rgba(0, 200, 100, 0.06) 45%,
        transparent 70%
    );
    filter: blur(28px);
    animation: lw-glow-pulse 4s ease-in-out infinite;
}

/* Card da logo */
.lw-card {
    position: relative;
    width: 440px;
    height: 440px;
    border-radius: 104px;
    overflow: hidden;
    cursor: pointer;
    transform-style: preserve-3d;
    transform-origin: center center;
    will-change: transform, box-shadow;
    box-shadow:
        0 24px 50px rgba(0,0,0,0.7),
        0 0 0 1px rgba(255,255,255,0.05);
    animation: lw-float 5s ease-in-out infinite 1.4s;
}

/* Para animação enquanto em hover (JS remove lw-float) */
.lw-card.is-hovered {
    animation: none;
}

/* Imagem */
.lw-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
}

/* Reflexo de vidro */
.lw-reflection {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    z-index: 2;
    mix-blend-mode: screen;
    opacity: 0;
    will-change: background, opacity;
    background: radial-gradient(
        circle at 50% 30%,
        rgba(255,255,255,0.22) 0%,
        rgba(255,255,255,0.07) 40%,
        transparent 68%
    );
}

/* Aro de luz interno */
.lw-rim {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    z-index: 3;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.14),
        inset 0 -1px 0 rgba(0,0,0,0.45);
}

/* Mobile: exibe a logo acima do texto na hero */
@media (max-width: 768px) {
    #logoWidget {
        position: relative;
        bottom: auto;
        right: auto;
        width: 220px;
        height: 220px;
        margin: 0 auto 2rem auto;
        order: -1;
    }

    #logoWidget .lw-card {
        width: 220px;
        height: 220px;
        border-radius: 52px;
    }

    .hero-section {
        flex-direction: column;
        justify-content: center;
        padding-top: 100px;
    }

    .hero-section .container {
        width: 100%;
    }
}

/* ---- Neon text utilities (ex-inline styles) ---- */
.text-neon-hero {
    color: var(--bkg-neon);
    text-shadow: 0 0 20px rgba(0,255,136,0.6), 0 0 40px rgba(0,255,136,0.3);
}

.footer-neon-heading {
    color: var(--bkg-neon);
    text-shadow: 0 0 8px rgba(0,255,136,0.4);
}

/* ---- Modal neon (ex-inline styles) ---- */
.modal-neon-content {
    background: #0e0e0e !important;
    border: 1px solid rgba(0,255,136,0.5) !important;
    box-shadow: 0 0 30px rgba(0,255,136,0.15) !important;
    border-radius: 16px !important;
    color: rgba(255,255,255,0.85);
}

.modal-neon-header {
    background: rgba(0,0,0,0.3) !important;
    border-bottom: 1px solid rgba(0,255,136,0.2) !important;
}

.modal-neon-title {
    color: var(--bkg-neon);
    text-shadow: 0 0 12px rgba(0,255,136,0.5);
}

.modal-neon-body {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.7;
}

.modal-neon-footer {
    border-top: 1px solid rgba(0,255,136,0.2) !important;
}
