:root {
    --bg-dark: #0f1115;
    --bg-card: #16191f;
    --primary-color: #0dbf85;
    --primary-hover: #0ec488;
    --text-main: #ffffff;
    --text-muted: #ced4da;
    --border-color: #262a33;
}

body {
    font-family: "Space Grotesk", sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 100px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: linear-gradient(90deg, #ffffff, #a0a0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-primary-brand {
    color: var(--primary-color);
}
.text-muted {
    color: var(--text-muted) !important;
}

.navbar {
    backdrop-filter: blur(12px);
    background-color: rgba(15, 17, 21, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-main) !important;
}

.navbar-logo {
    width: 180px;
    height: auto;
}

.badge-premium {
    display: inline-flex;
    align-items: center;
    background: rgba(66, 234, 129, 0.08);
    border: 1px solid rgba(66, 234, 129, 0.4);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 50rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 15px rgba(66, 234, 129, 0.15);
    transition: all 0.3s ease;
}

.badge-premium:hover {
    background: rgba(66, 234, 129, 0.15);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.badge-premium i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-right: 10px;
}

.btn-premium {
    background-color: var(--primary-color);
    color: #000;
    font-weight: 600;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.btn-premium:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(66, 234, 129, 0.15);
}

.btn-outline-premium {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-main);
    padding: 12px 28px;
    border-radius: 8px;
    background: transparent;
    transition: all 0.3s ease;
}
.btn-outline-premium:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.hero-section {
    padding: 140px 0 80px;
    position: relative;
}

.hero-dashboard-mockup {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    padding: 8px;
    margin-top: 50px;
    overflow: hidden;
}

.glow-effect {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    filter: blur(200px);
    opacity: 0.12;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    border-radius: 50%;
}
.feature-card {
    background: var(--bg-card); 
    border: 1px solid var(--border-color);     
    border-radius: 16px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(13, 191, 133, 0.1);
    background: #1c2027;
    transform: translateY(-5px);
}

.feature-card h4 {
    color: #ffffff;
    margin-top: 1.5rem;
}

.feature-card .text-muted {
    color: #9ca3af !important;
    line-height: 1.6;
}

.feature-icon {
    color: #10b981;
    font-size: 2rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    letter-spacing: 0.015em;
}

.pricing-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border: 1px solid var(--primary-color);
    background: radial-gradient(
            circle at top right,
            rgba(66, 234, 129, 0.05),
            transparent 40%
        ),
        var(--bg-card);
}

.price-tag {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-main);
}

.price-period {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

section#pricing .text-muted,
section#faq .text-muted {
    color: #a0a0a0 !important;
}

.pricing-card.featured .badge {
    color: #000 !important;
    letter-spacing: 0.5px;
}

.pricing-card.pessoal:hover {
    border-color: #4b5563;
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    position: relative;
    transform: scale(1.05);
}

.feature-list li {
    margin-bottom: 15px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
}
.feature-list i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

footer {
    padding: 80px 0 40px;
}
footer, .footer-section {
    background-color: #08090b;
    border-top: 1px solid var(--border-color);
}

footer p, footer li a {
    color: var(--text-muted);
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

footer li a:hover {
    color: var(--primary-color);
}

footer .small-print {
    color: rgba(255, 255, 255, 0.5);
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: 0.2s;
}
.footer-link:hover {
    color: var(--primary-color);
}

section {
    padding: 100px 0;
}

.legal-content {
    background: var(--bg-card);
    padding: 60px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    margin-top: 120px;
    margin-bottom: 40px;
}

.legal-content h1 {
    color: var(--primary-color);
    margin-bottom: 30px;
}
.legal-content h2 {
    margin-top: 30px;
    font-size: 1.5rem;
    color: #fff;
}
.legal-content p,
.legal-content li {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 15px;
}
.legal-content ul {
    padding-left: 20px;
}

.btn-back {
    color: var(--text-main);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}
.btn-back:hover {
    color: var(--primary-color);
}

.hover-white:hover {
    color: var(--primary-color) !important;
    transition: color 0.3s ease;
}

.btn-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    color: #fff;
    transform: scale(1.1);
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.btn-whatsapp {
    animation: pulse-green 2s infinite;
}

.accordion-button::after {
    filter: invert(1);
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color) !important;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.trust-block {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(66, 234, 129, 0.1);
    color: var(--primary-color);
    border-radius: 12px;
    border: 1px solid rgba(66, 234, 129, 0.2);
}

.testimonial-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.avatar-circle {
    width: 48px;
    height: 48px;
    background: rgba(66, 234, 129, 0.1);
    color: var(--primary-color);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.1rem;
    border: 1px solid rgba(66, 234, 129, 0.2);
}

.star-rating {
    color: #ffc107;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    background-color: rgba(22, 25, 31, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(66, 234, 129, 0.2);
    padding: 15px 20px;
    border-radius: 12px;
    z-index: 10000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.5s ease-out;
}

#accept-cookies {
    background-color: #10b981;
    color: #051a14;
    font-weight: 700;
    border: none;
}

#accept-cookies:hover {
    background-color: #059669;
    color: #ffffff;
}

.cookie-banner a.text-primary-brand {
    color: #34d399 !important;
    text-decoration: underline !important;
}

@keyframes slideUp {
    from {
        transform: translate(-50%, 100px);
        opacity: 0;
    }
    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

@media (min-width: 992px) {
    .navbar-logo {
        width: 260px;
    }
}
