body {
    font-family: 'Outfit', 'Nunito', sans-serif;
    background-color: #f8fafc;
    color: #1e293b;
    overflow-x: hidden;
    position: relative;
}

/* Orbes de luz animados no plano de fundo */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}

.orb-1 {
    background: radial-gradient(circle, #6366f1 0%, rgba(99, 102, 241, 0) 70%);
    width: 600px;
    height: 600px;
    top: -150px;
    right: -100px;
    animation: orbFloat1 25s infinite alternate ease-in-out;
}

.orb-2 {
    background: radial-gradient(circle, #a855f7 0%, rgba(168, 85, 247, 0) 70%);
    width: 500px;
    height: 500px;
    bottom: 20%;
    left: -100px;
    animation: orbFloat2 30s infinite alternate ease-in-out;
}

.orb-3 {
    background: radial-gradient(circle, #06b6d4 0%, rgba(6, 182, 212, 0) 70%);
    width: 400px;
    height: 400px;
    top: 40%;
    right: 10%;
    animation: orbFloat3 22s infinite alternate ease-in-out;
}

@keyframes orbFloat1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-100px, 80px) scale(1.1);
    }
}

@keyframes orbFloat2 {
    0% {
        transform: translate(0, 0) scale(1.1);
    }

    100% {
        transform: translate(120px, -90px) scale(0.95);
    }
}

@keyframes orbFloat3 {
    0% {
        transform: translate(0, 0) scale(0.9);
    }

    100% {
        transform: translate(-60px, -60px) scale(1.05);
    }
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(99, 102, 241, 0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    z-index: 2;
    pointer-events: none;
}

/* Navbar */
.navbar-custom {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand img {
    height: 2.25rem;
}

.nav-link-custom {
    color: #475569;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.25s ease;
    margin: 0 1rem;
}

.nav-link-custom:hover {
    color: #6366f1;
}

.btn-nav-login {
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: #4f46e5;
    background: rgba(99, 102, 241, 0.05);
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 10px;
    transition: all 0.25s ease;
}

.btn-nav-login:hover {
    background: #4f46e5;
    color: #fff;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
    transform: translateY(-1px);
}

.btn-nav-signup {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    color: #fff;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 10px;
    border: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15);
}

.btn-nav-signup:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.25);
    filter: brightness(1.05);
    color: #fff;
}

/* Hero Section */
.hero-section {
    padding: 6rem 0 4rem 0;
    position: relative;
    z-index: 10;
}

.badge-hero {
    background: rgba(99, 102, 241, 0.08);
    color: #4f46e5;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    border: 1px solid rgba(99, 102, 241, 0.15);
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-hero i {
    font-size: 0.95rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.hero-title span {
    background: linear-gradient(135deg, #4f46e5 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    color: #fff;
    font-weight: 700;
    padding: 0.85rem 2rem;
    border-radius: 12px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.2);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(99, 102, 241, 0.3);
    filter: brightness(1.05);
    color: #fff;
}

.btn-hero-secondary {
    border: 1px solid rgba(148, 163, 184, 0.4);
    color: #334155;
    background: #fff;
    font-weight: 600;
    padding: 0.85rem 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
    border-color: rgba(148, 163, 184, 0.6);
}

/* Floating Dashboard Widget */
.dashboard-preview {
    position: relative;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 28px;
    padding: 1.75rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

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

.badge-status-preview {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
    border-radius: 100px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.badge-status-preview .dot {
    width: 6px;
    height: 6px;
    background-color: #10b981;
    border-radius: 50%;
    display: inline-block;
}

.preview-metric-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: #fff;
    border-radius: 16px;
    padding: 1rem;
    border: 1px solid #f1f5f9;
    margin-top: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.preview-chart-svg {
    width: 100%;
    height: 65px;
    overflow: visible;
}

.preview-chart-path {
    stroke-dasharray: 600;
    stroke-dashoffset: 0;
    stroke: #6366f1;
    stroke-width: 3;
    fill: none;
}

.preview-timeline-item {
    display: flex;
    gap: 0.65rem;
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 0.65rem 0.85rem;
    margin-top: 0.6rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.preview-timeline-badge {
    color: #10b981;
    font-size: 1rem;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    position: relative;
    z-index: 10;
    background: #fff;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 4rem auto;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
}

.section-header p {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.6;
}

.feature-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: #fff;
    border-color: #6366f1;
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.05);
}

.feature-icon-wrapper {
    background: rgba(99, 102, 241, 0.08);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4f46e5;
    font-size: 1.35rem;
    margin-bottom: 1.5rem;
}

.feature-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Plans Section */
.plans-section {
    padding: 6rem 0;
    position: relative;
    z-index: 10;
}

.plan-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 2.25rem;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.plan-card.popular {
    border: 2px solid #6366f1;
    background: #fff;
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.06);
}

.plan-card:hover {
    transform: translateY(-5px);
    border-color: #6366f1;
    box-shadow: 0 25px 50px rgba(99, 102, 241, 0.08);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 1rem;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(99, 102, 241, 0.2);
}

.plan-header {
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.plan-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.plan-price {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.plan-price span {
    font-size: 0.95rem;
    font-weight: 500;
    color: #64748b;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.plan-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.95rem;
    color: #475569;
}

.plan-features li i {
    color: #10b981;
    font-size: 1.1rem;
}

.plan-features li i.bi-dash-circle {
    color: #cbd5e1;
}

.btn-plan-select {
    background: #fff;
    color: #4f46e5;
    border: 1px solid rgba(79, 70, 229, 0.25);
    font-weight: 700;
    padding: 0.75rem;
    border-radius: 12px;
    width: 100%;
    transition: all 0.25s ease;
}

.btn-plan-select:hover {
    background: #4f46e5;
    color: #fff;
    border-color: #4f46e5;
    box-shadow: 0 8px 16px rgba(79, 70, 229, 0.15);
}

.plan-card.popular .btn-plan-select {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    color: #fff;
    border: none;
    box-shadow: 0 6px 15px rgba(99, 102, 241, 0.2);
}

.plan-card.popular .btn-plan-select:hover {
    filter: brightness(1.05);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    position: relative;
    z-index: 10;
    background: #fff;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.faq-accordion {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.faq-item:hover {
    border-color: #cbd5e1;
}

.faq-header-btn {
    width: 100%;
    padding: 1.25rem 1.5rem;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.25s ease;
}

.faq-header-btn:focus {
    outline: none;
}

.faq-header-btn i {
    font-size: 1.15rem;
    color: #64748b;
    transition: transform 0.25s ease;
}

.faq-header-btn.active {
    color: #4f46e5;
}

.faq-header-btn.active i {
    transform: rotate(180deg);
    color: #4f46e5;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    background: #fff;
}

.faq-body-content {
    padding: 1.25rem 1.5rem;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    border-top: 1px solid #f1f5f9;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    position: relative;
    z-index: 10;
}

.contact-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 28px;
    padding: 2.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
    max-width: 680px;
    margin: 0 auto;
}

.contact-form .form-label {
    font-weight: 600;
    color: #475569;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.contact-form .form-control {
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    background-color: rgba(255, 255, 255, 0.6);
}

.contact-form .form-control:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
    background-color: #fff;
    outline: none;
}

.btn-submit-contact {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    color: #fff;
    font-weight: 700;
    padding: 0.85rem;
    border-radius: 12px;
    border: none;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(99, 102, 241, 0.15);
}

.btn-submit-contact:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.25);
    filter: brightness(1.05);
}

/* Footer */
.footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 4rem 0 2rem 0;
    position: relative;
    z-index: 10;
    border-top: 1px solid #1e293b;
}

.footer-logo img {
    height: 2.25rem;
    margin-bottom: 1.5rem;
}

.footer-text {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-links-title {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 1.5rem;
    margin-top: 3rem;
    text-align: center;
    font-size: 0.85rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.footer-socials a {
    color: #94a3b8;
    font-size: 1.25rem;
    transition: color 0.2s ease;
}

.footer-socials a:hover {
    color: #fff;
}

/* Responsividade Mobile e Tablets */
@media (max-width: 991px) {
    .navbar-custom .d-flex.gap-2 {
        margin-top: 1rem;
        flex-direction: column;
        width: 100%;
    }

    .navbar-custom .collapse .btn {
        width: 100%;
        text-align: center;
    }

    .hero-section {
        padding: 4rem 0 2rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .dashboard-preview {
        padding: 1.25rem;
    }

    .orb-1,
    .orb-2,
    .orb-3 {
        transform: scale(0.7);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-desc {
        font-size: 1.05rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        text-align: center;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .features-section,
    .plans-section,
    .faq-section,
    .contact-section {
        padding: 4rem 0;
    }

    .plan-card,
    .contact-card {
        padding: 1.5rem;
    }

    .orb-1,
    .orb-2,
    .orb-3 {
        transform: scale(0.5);
    }

    .footer-links-title {
        margin-top: 1.5rem;
    }
}