/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-83a057rpdu] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-83a057rpdu] {
    flex: 1;
}

.sidebar[b-83a057rpdu] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-83a057rpdu] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-83a057rpdu]  a, .top-row[b-83a057rpdu]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-83a057rpdu]  a:hover, .top-row[b-83a057rpdu]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-83a057rpdu]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-83a057rpdu] {
        justify-content: space-between;
    }

    .top-row[b-83a057rpdu]  a, .top-row[b-83a057rpdu]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-83a057rpdu] {
        flex-direction: row;
    }

    .sidebar[b-83a057rpdu] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-83a057rpdu] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-83a057rpdu]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-83a057rpdu], article[b-83a057rpdu] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-83a057rpdu] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-83a057rpdu] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-99ng1ga7fb],
.components-reconnect-repeated-attempt-visible[b-99ng1ga7fb],
.components-reconnect-failed-visible[b-99ng1ga7fb],
.components-pause-visible[b-99ng1ga7fb],
.components-resume-failed-visible[b-99ng1ga7fb],
.components-rejoining-animation[b-99ng1ga7fb] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-99ng1ga7fb],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-99ng1ga7fb],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-99ng1ga7fb],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-99ng1ga7fb],
#components-reconnect-modal.components-reconnect-retrying[b-99ng1ga7fb],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-99ng1ga7fb],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-99ng1ga7fb],
#components-reconnect-modal.components-reconnect-failed[b-99ng1ga7fb],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-99ng1ga7fb] {
    display: block;
}


#components-reconnect-modal[b-99ng1ga7fb] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-99ng1ga7fb 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-99ng1ga7fb 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-99ng1ga7fb 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-99ng1ga7fb]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-99ng1ga7fb 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-99ng1ga7fb {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-99ng1ga7fb {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-99ng1ga7fb {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-99ng1ga7fb] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-99ng1ga7fb] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-99ng1ga7fb] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-99ng1ga7fb] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-99ng1ga7fb] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-99ng1ga7fb] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-99ng1ga7fb] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-99ng1ga7fb 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-99ng1ga7fb] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-99ng1ga7fb {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* Landing Page Premium Styling */

.landing-wrapper[b-snxwuoaeau] {
    font-family: 'Inter', sans-serif;
    color: #F8FAFC;
    background-color: #0F172A; /* Deep Slate Background */
    overflow-x: hidden;
    min-height: 100vh;
}

/* Animations */
.animate-fade-in[b-snxwuoaeau] {
    animation: fadeInUp-b-snxwuoaeau 0.8s ease-out forwards;
}

.delay-100[b-snxwuoaeau] {
    animation-delay: 0.1s;
    opacity: 0;
}

.delay-200[b-snxwuoaeau] {
    animation-delay: 0.2s;
    opacity: 0;
}

.delay-300[b-snxwuoaeau] {
    animation-delay: 0.3s;
    opacity: 0;
}

@keyframes fadeInUp-b-snxwuoaeau {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gradients & Badges */
.gradient-text[b-snxwuoaeau] {
    background: linear-gradient(135deg, #6366F1 0%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.gradient-bg-accent[b-snxwuoaeau] {
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
}

.feature-badge[b-snxwuoaeau] {
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: #818CF8;
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Hero Section */
.hero-section[b-snxwuoaeau] {
    position: relative;
    padding: 120px 24px 100px 24px;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(79, 70, 229, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.15) 0%, transparent 40%),
        linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
}

.hero-subtitle[b-snxwuoaeau] {
    font-size: 1.25rem;
    color: #94A3B8;
    max-width: 650px;
    line-height: 1.6;
}

/* Mockup Layout */
.mockup-container[b-snxwuoaeau] {
    position: relative;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mockup-container:hover[b-snxwuoaeau] {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px -10px rgba(79, 70, 229, 0.2);
}

.mockup-header[b-snxwuoaeau] {
    background: rgba(15, 23, 42, 0.8);
    padding: 12px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 8px;
}

.mockup-dot[b-snxwuoaeau] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.mockup-dot.red[b-snxwuoaeau] { background-color: #EF4444; }
.mockup-dot.yellow[b-snxwuoaeau] { background-color: #F59E0B; }
.mockup-dot.green[b-snxwuoaeau] { background-color: #10B981; }

.mockup-content[b-snxwuoaeau] {
    padding: 24px;
    font-size: 0.9rem;
    color: #CBD5E1;
}

/* Features Grid */
.features-section[b-snxwuoaeau] {
    padding: 80px 24px;
    background-color: #0F172A;
    position: relative;
}

.section-title[b-snxwuoaeau] {
    font-size: 2.25rem;
    font-weight: 800;
    color: #F8FAFC;
    text-align: center;
    letter-spacing: -0.5px;
}

.section-subtitle[b-snxwuoaeau] {
    color: #94A3B8;
    text-align: center;
    max-width: 600px;
    margin: 12px auto 50px auto;
    font-size: 1.1rem;
}

/* Glassmorphism Feature Cards */
.feature-card[b-snxwuoaeau] {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 32px 24px;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-card:hover[b-snxwuoaeau] {
    transform: translateY(-8px);
    background: rgba(30, 41, 59, 0.65);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 20px 40px -15px rgba(99, 102, 241, 0.15);
}

.feature-icon-wrapper[b-snxwuoaeau] {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    color: #818CF8;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper[b-snxwuoaeau] {
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    color: #FFFFFF;
    box-shadow: 0 8px 20px -6px rgba(79, 70, 229, 0.4);
}

.feature-card h3[b-snxwuoaeau] {
    font-size: 1.25rem;
    font-weight: 700;
    color: #F8FAFC;
}

.feature-card p[b-snxwuoaeau] {
    color: #94A3B8;
    line-height: 1.6;
    font-size: 0.95rem;
    flex-grow: 1;
}

/* Pricing Grid */
.pricing-section[b-snxwuoaeau] {
    padding: 80px 24px;
    background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
}

.pricing-card[b-snxwuoaeau] {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(12px);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card.popular[b-snxwuoaeau] {
    border: 2px solid #6366F1;
    background: rgba(30, 41, 59, 0.7);
    transform: scale(1.03);
    box-shadow: 0 20px 40px -10px rgba(99, 102, 241, 0.25);
}

.pricing-card.popular[b-snxwuoaeau]::before {
    content: 'MAIS ESCOLHIDO';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 9999px;
    letter-spacing: 1px;
}

.pricing-card:hover[b-snxwuoaeau] {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.4);
}

.pricing-card.popular:hover[b-snxwuoaeau] {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 25px 50px -5px rgba(99, 102, 241, 0.35);
}

.price-title[b-snxwuoaeau] {
    font-size: 1.25rem;
    font-weight: 700;
    color: #94A3B8;
    margin-bottom: 8px;
}

.price-value[b-snxwuoaeau] {
    font-size: 2.75rem;
    font-weight: 800;
    color: #F8FAFC;
    margin: 16px 0;
}

.price-period[b-snxwuoaeau] {
    font-size: 0.9rem;
    color: #64748B;
    font-weight: 400;
}

.pricing-features[b-snxwuoaeau] {
    list-style: none;
    padding: 0;
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: left;
    flex-grow: 1;
}

.pricing-features li[b-snxwuoaeau] {
    font-size: 0.95rem;
    color: #CBD5E1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li i[b-snxwuoaeau] {
    color: #10B981;
}

/* Final CTA Section */
.cta-section[b-snxwuoaeau] {
    padding: 100px 24px;
    background: #0F172A;
    text-align: center;
    position: relative;
}

.cta-box[b-snxwuoaeau] {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.15) 0%, rgba(6, 182, 212, 0.15) 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 24px;
    padding: 60px 40px;
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

.cta-box[b-snxwuoaeau]::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

/* Footer styling */
.landing-footer[b-snxwuoaeau] {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background-color: #0B0F19;
    padding: 60px 24px 30px 24px;
    font-size: 0.9rem;
    color: #64748B;
}

.footer-column h4[b-snxwuoaeau] {
    color: #F8FAFC;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links[b-snxwuoaeau] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a[b-snxwuoaeau] {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover[b-snxwuoaeau] {
    color: #6366F1;
}

.footer-bottom[b-snxwuoaeau] {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* WhatsApp Float Button */
.whatsapp-float[b-snxwuoaeau] {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFF !important;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-float:hover[b-snxwuoaeau] {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 10px 22px rgba(37, 211, 102, 0.4);
    background-color: #22c35e;
}
