/* Vigia Landing Page — Dark & Bold */
/* Self-contained: no dependency on vigia.css variables */

/* Reset & Base */
.landing-page {
    margin: 0;
    padding: 0;
    background: #12161c;
    color: #e6edf3;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

.landing-page *, .landing-page *::before, .landing-page *::after {
    box-sizing: border-box;
}

.lp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Navbar ── */
.lp-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #12161c;
    border-bottom: 1px solid #242a34;
    padding: 16px 0;
}

.lp-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lp-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #e8542e;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.lp-nav-links {
    display: flex;
    gap: 32px;
}

.lp-nav-links a {
    color: #a8b2bd;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.lp-nav-links a:hover {
    color: #e6edf3;
}

/* ── Buttons ── */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.1s;
    border: 2px solid transparent;
}

.lp-btn:active {
    transform: scale(0.98);
}

.lp-btn-primary {
    background: #e8542e;
    color: #fff;
    border-color: #e8542e;
}

.lp-btn-primary:hover {
    background: #d04825;
    border-color: #d04825;
}

.lp-btn-ghost {
    background: transparent;
    color: #e6edf3;
    border-color: #555;
}

.lp-btn-ghost:hover {
    border-color: #888;
    background: rgba(255, 255, 255, 0.05);
}

.lp-btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.lp-btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
}

.lp-btn-full {
    width: 100%;
}

/* ── Hero ── */
.lp-hero {
    padding: 100px 0 60px;
    text-align: center;
}

.lp-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #e8542e;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.lp-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -1px;
}

.lp-hero-subtitle {
    font-size: 1.2rem;
    color: #a8b2bd;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.lp-hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

/* Stats Bar */
.lp-stats-bar {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding: 32px 0;
    border-top: 1px solid #2a3040;
    flex-wrap: wrap;
}

.lp-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.lp-stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: #e6edf3;
}

.lp-stat-label {
    font-size: 0.8rem;
    color: #6e7a88;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── Dashboard Preview ── */
.lp-preview {
    padding: 0 0 80px;
}

.lp-dashboard-mockup {
    max-width: 900px;
    margin: 0 auto;
    background: #1a1f28;
    border: 1px solid #2a3040;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(232, 84, 46, 0.15);
}

.lp-mock-topbar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #242a34;
    border-bottom: 1px solid #2a3040;
}

.lp-mock-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.lp-mock-title {
    margin-left: 12px;
    font-size: 0.8rem;
    color: #6e7a88;
}

.lp-mock-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding: 20px;
}

.lp-mock-card {
    background: #242a34;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lp-mock-label {
    font-size: 0.7rem;
    color: #6e7a88;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lp-mock-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #e6edf3;
}

.lp-mock-badge {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 100px;
    width: fit-content;
}

.lp-mock-badge-green {
    background: rgba(74, 222, 128, 0.15);
    color: #4ade80;
}

.lp-mock-groups {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 0 20px 20px;
}

.lp-mock-group-card {
    background: #242a34;
    border-radius: 12px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lp-mock-group-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lp-mock-group-name {
    font-weight: 700;
    font-size: 0.85rem;
    color: #e6edf3;
}

.lp-mock-sentiment {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.lp-mock-group-members {
    font-size: 0.75rem;
    color: #6e7a88;
}

.lp-mock-bar {
    height: 4px;
    background: #2a3040;
    border-radius: 2px;
    overflow: hidden;
}

.lp-mock-bar-fill {
    height: 100%;
    background: #e8542e;
    border-radius: 2px;
}

/* ── Features ── */
.lp-features {
    padding: 80px 0;
}

.lp-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 100px;
}

.lp-feature:last-child {
    margin-bottom: 0;
}

.lp-feature-reverse {
    direction: rtl;
}

.lp-feature-reverse > * {
    direction: ltr;
}

.lp-feature-text h2 {
    font-size: 2rem;
    font-weight: 800;
    margin: 12px 0 16px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.lp-feature-text p {
    font-size: 1.05rem;
    color: #a8b2bd;
    line-height: 1.7;
}

/* Feature Mockup Cards */
.lp-mockup-card {
    background: #1a1f28;
    border: 1px solid #2a3040;
    border-radius: 12px;
    padding: 24px;
}

.lp-mockup-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.lp-mockup-card-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: #e6edf3;
}

.lp-mockup-card-date {
    font-size: 0.75rem;
    color: #6e7a88;
}

.lp-mockup-card-body {
    font-size: 0.9rem;
    color: #a8b2bd;
    margin: 0 0 16px;
    line-height: 1.6;
}

.lp-mockup-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.lp-tag {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
}

.lp-tag-orange {
    background: rgba(232, 84, 46, 0.15);
    color: #e8542e;
}

.lp-tag-blue {
    background: rgba(96, 165, 250, 0.15);
    color: #60a5fa;
}

.lp-tag-green {
    background: rgba(74, 222, 128, 0.15);
    color: #4ade80;
}

.lp-mockup-sentiment {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #a8b2bd;
}

/* Analytics Mockup */
.lp-mockup-gauge {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.lp-gauge-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 6px solid #2a3040;
    border-top-color: #e8542e;
    border-right-color: #e8542e;
    border-bottom-color: #e8542e;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lp-gauge-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: #e8542e;
    line-height: 1;
}

.lp-gauge-label {
    font-size: 0.6rem;
    color: #6e7a88;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lp-mockup-heatmap {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
}

.lp-heatmap-row {
    display: flex;
    align-items: center;
    gap: 4px;
}

.lp-heatmap-day {
    font-size: 0.7rem;
    color: #6e7a88;
    width: 28px;
    flex-shrink: 0;
}

.lp-hm-cell {
    flex: 1;
    height: 20px;
    background: #e8542e;
    border-radius: 3px;
}

.lp-mockup-comparison {
    text-align: center;
}

.lp-comparison-up {
    font-size: 0.8rem;
    font-weight: 600;
    color: #4ade80;
}

/* Members Mockup */
.lp-mockup-members {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.lp-member-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #2a3040;
}

.lp-member-row:last-child {
    border-bottom: none;
}

.lp-member-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #2a3040;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: #a8b2bd;
    flex-shrink: 0;
}

.lp-member-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 100px;
}

.lp-member-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #e6edf3;
}

.lp-member-tier {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lp-tier-super { color: #4ade80; }
.lp-tier-active { color: #60a5fa; }
.lp-tier-risk { color: #f87171; }

.lp-member-bar-wrap {
    flex: 1;
    height: 4px;
    background: #2a3040;
    border-radius: 2px;
    overflow: hidden;
}

.lp-member-bar {
    height: 100%;
    background: #e8542e;
    border-radius: 2px;
}

.lp-bar-warning {
    background: #f87171;
}

.lp-member-trend {
    font-size: 0.75rem;
    font-weight: 700;
    min-width: 40px;
    text-align: right;
}

.lp-trend-up { color: #4ade80; }
.lp-trend-down { color: #f87171; }

/* Multi-group Grid */
.lp-mockup-grid-4 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.lp-mini-group {
    background: #1a1f28;
    border: 1px solid #2a3040;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lp-mini-name {
    font-weight: 700;
    font-size: 0.85rem;
    color: #e6edf3;
}

.lp-mini-count {
    font-size: 0.7rem;
    color: #6e7a88;
}

.lp-mini-count::after {
    content: ' membros';
}

.lp-mini-bar {
    height: 4px;
    background: #2a3040;
    border-radius: 2px;
    overflow: hidden;
}

.lp-mini-bar-fill {
    height: 100%;
    border-radius: 2px;
}

/* ── "E mais..." ── */
.lp-more {
    padding: 80px 0;
    border-top: 1px solid #242a34;
}

.lp-section-title {
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    margin: 0 0 48px;
    letter-spacing: -0.5px;
}

.lp-more-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lp-more-card {
    background: #1a1f28;
    border: 1px solid #2a3040;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
}

.lp-more-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.lp-more-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: #e6edf3;
}

.lp-more-card p {
    font-size: 0.9rem;
    color: #a8b2bd;
    margin: 0;
    line-height: 1.6;
}

/* ── Pricing ── */
.lp-pricing {
    padding: 80px 0;
    border-top: 1px solid #242a34;
}

.lp-pricing-card {
    max-width: 480px;
    margin: 0 auto;
    background: #1a1f28;
    border: 2px solid #2a3040;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
}

.lp-pricing-header {
    margin-bottom: 32px;
}

.lp-pricing-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #e6edf3;
}

.lp-pricing-period {
    display: block;
    font-size: 0.9rem;
    color: #6e7a88;
    margin-top: 4px;
}

.lp-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    text-align: left;
}

.lp-pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #242a34;
    color: #a8b2bd;
    font-size: 0.95rem;
}

.lp-pricing-features li::before {
    content: '\2713';
    color: #4ade80;
    font-weight: 700;
    margin-right: 12px;
}

.lp-pricing-note {
    font-size: 0.8rem;
    color: #6e7a88;
    margin: 16px 0 12px;
}

.lp-pricing-enterprise {
    font-size: 0.85rem;
    color: #e8542e;
    text-decoration: none;
}

.lp-pricing-enterprise:hover {
    text-decoration: underline;
}

/* ── FAQ ── */
.lp-faq {
    padding: 80px 0;
    border-top: 1px solid #242a34;
}

.lp-faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.lp-faq-item {
    border-bottom: 1px solid #2a3040;
}

.lp-faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #e6edf3;
    font-size: 1rem;
    font-weight: 600;
    padding: 20px 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
}

.lp-faq-question:hover {
    color: #e8542e;
}

.lp-faq-chevron {
    font-size: 1.3rem;
    color: #6e7a88;
    transition: transform 0.2s;
    flex-shrink: 0;
    margin-left: 16px;
}

.lp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.lp-faq-item.faq-open .lp-faq-answer {
    max-height: 200px;
}

.lp-faq-item.faq-open .lp-faq-chevron {
    transform: rotate(45deg);
}

.lp-faq-answer p {
    padding: 0 0 20px;
    color: #a8b2bd;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* ── CTA Final ── */
.lp-cta-final {
    padding: 100px 0;
    text-align: center;
    background: #1a1f28;
    border-top: 1px solid #2a3040;
}

.lp-cta-final h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 12px;
    letter-spacing: -0.5px;
}

.lp-cta-final p {
    font-size: 1.1rem;
    color: #6e7a88;
    margin: 0 0 32px;
}

/* ── Footer ── */
.lp-footer {
    padding: 40px 0;
    border-top: 1px solid #2a3040;
    background: #12161c;
}

.lp-footer-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.lp-footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lp-footer-links {
    display: flex;
    gap: 24px;
}

.lp-footer-links a {
    color: #6e7a88;
    text-decoration: none;
    font-size: 0.85rem;
}

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

.lp-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid #242a34;
    font-size: 0.8rem;
    color: #6e7a88;
}

.lp-footer-bottom a {
    color: #e8542e;
    text-decoration: none;
}

.lp-footer-bottom a:hover {
    text-decoration: underline;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .lp-hero-title {
        font-size: 2.8rem;
    }

    .lp-feature {
        gap: 40px;
    }

    .lp-stats-bar {
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .lp-nav-links {
        display: none;
    }

    .lp-hero {
        padding: 60px 0 40px;
    }

    .lp-hero-title {
        font-size: 2rem;
    }

    .lp-hero-subtitle {
        font-size: 1rem;
    }

    .lp-stats-bar {
        gap: 20px;
    }

    .lp-stat-value {
        font-size: 1.5rem;
    }

    .lp-mock-metrics {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-mock-groups {
        grid-template-columns: 1fr;
    }

    .lp-feature {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 64px;
    }

    .lp-feature-reverse {
        direction: ltr;
    }

    .lp-feature-text h2 {
        font-size: 1.6rem;
    }

    .lp-more-grid {
        grid-template-columns: 1fr;
    }

    .lp-section-title {
        font-size: 1.8rem;
    }

    .lp-pricing-amount {
        font-size: 2.2rem;
    }

    .lp-cta-final h2 {
        font-size: 1.8rem;
    }

    .lp-footer-top {
        flex-direction: column;
        gap: 16px;
    }

    .lp-footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .lp-mockup-grid-4 {
        grid-template-columns: 1fr;
    }
}
