/* ============================================================
   LANDING PAGE STYLES — DIMA
   Paleta: Navy #0F2D5E + Cyan #00B4D8
   ============================================================ */

.landing-wrapper {
    font-family: 'Inter', sans-serif;
    background: #0A1628;
    color: #F0F4F8;
    min-height: 100vh;
}

.landing-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ---- Navbar ---- */
.landing-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 180, 216, 0.1);
    padding: 0.875rem 0;
}

.landing-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.landing-nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.landing-nav-a {
    color: rgba(240, 244, 248, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.15s;
}

.landing-nav-a:hover { color: #00B4D8; }

/* ---- Buttons ---- */
.landing-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background: #0F2D5E;
    color: white !important;
    border: 1px solid #0F2D5E;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.landing-btn-primary:hover {
    background: #1A4A8A;
    border-color: #00B4D8;
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.2);
    color: white !important;
    text-decoration: none;
}

.landing-btn-ghost {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    color: rgba(240, 244, 248, 0.8) !important;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 8px;
    transition: color 0.15s, background 0.15s;
}

.landing-btn-ghost:hover {
    color: white !important;
    background: rgba(255,255,255,0.06);
    text-decoration: none;
}

.landing-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background: transparent;
    color: #00B4D8 !important;
    border: 1px solid rgba(0, 180, 216, 0.4);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
    cursor: pointer;
}

.landing-btn-outline:hover {
    background: rgba(0, 180, 216, 0.08);
    border-color: #00B4D8;
    color: #00B4D8 !important;
    text-decoration: none;
}

.landing-btn-lg {
    padding: 0.75rem 1.75rem;
    font-size: 1rem;
    border-radius: 10px;
}

/* ---- Hero ---- */
.landing-hero {
    position: relative;
    overflow: hidden;
    padding: 5rem 0 4rem;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,180,216,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,180,216,0.05) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.hero-bg-glow {
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(0,180,216,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    background: rgba(0, 180, 216, 0.1);
    border: 1px solid rgba(0, 180, 216, 0.25);
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #00B4D8;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00B4D8;
    box-shadow: 0 0 6px #00B4D8;
    animation: pulse 2s infinite;
}

.hero-headline {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #F0F4F8;
    margin: 0;
}

.hero-accent {
    background: linear-gradient(135deg, #00B4D8, #4F8CC9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.0625rem;
    color: rgba(240, 244, 248, 0.6);
    line-height: 1.7;
    max-width: 520px;
    margin: 0;
}

.hero-br { display: block; }

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* ---- Mockup ---- */
.hero-mockup {
    width: 100%;
    max-width: 720px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 180, 216, 0.2);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 180, 216, 0.1);
    margin-top: 1rem;
}

.mockup-bar {
    background: #0F1E35;
    padding: 0.625rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(0, 180, 216, 0.1);
}

.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dot.red    { background: #F43F5E; }
.mockup-dot.yellow { background: #F59E0B; }
.mockup-dot.green  { background: #10B981; }

.mockup-url {
    margin-left: 0.5rem;
    font-size: 0.7rem;
    color: rgba(240, 244, 248, 0.3);
    font-family: 'JetBrains Mono', monospace;
}

.mockup-body {
    display: flex;
    background: #0A1628;
    height: 240px;
}

.mockup-sidebar {
    width: 140px;
    background: #070E1C;
    padding: 1rem 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    flex-shrink: 0;
    border-right: 1px solid rgba(0, 180, 216, 0.08);
}

.mockup-logo-line {
    height: 12px;
    width: 80px;
    border-radius: 6px;
    background: rgba(0, 180, 216, 0.3);
    margin-bottom: 0.5rem;
}

.mockup-nav-item {
    height: 8px;
    border-radius: 4px;
    background: rgba(240, 244, 248, 0.08);
}

.mockup-nav-item.active {
    background: rgba(0, 180, 216, 0.25);
    width: 80%;
}

.mockup-content {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.mockup-cards {
    display: flex;
    gap: 0.625rem;
}

.mockup-card {
    flex: 1;
    border-radius: 8px;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.mockup-card.green  { background: rgba(16, 185, 129, 0.1); }
.mockup-card.red    { background: rgba(244, 63, 94, 0.1); }
.mockup-card.blue   { background: rgba(0, 180, 216, 0.1); }

.mockup-card-label {
    height: 6px;
    width: 50%;
    border-radius: 3px;
    background: rgba(240, 244, 248, 0.15);
}

.mockup-card-value {
    height: 10px;
    width: 70%;
    border-radius: 5px;
    background: rgba(240, 244, 248, 0.25);
}

.mockup-chart {
    flex: 1;
    background: rgba(255,255,255,0.02);
    border-radius: 8px;
    border: 1px solid rgba(0,180,216,0.08);
    padding: 0.75rem;
    display: flex;
    align-items: flex-end;
}

.mockup-bar-wrap {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    height: 100%;
    width: 100%;
}

.mockup-bar-item {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: linear-gradient(180deg, #00B4D8, rgba(0,180,216,0.4));
}

/* ---- Social Proof ---- */
.landing-proof {
    background: rgba(0, 180, 216, 0.04);
    border-top: 1px solid rgba(0, 180, 216, 0.1);
    border-bottom: 1px solid rgba(0, 180, 216, 0.1);
    padding: 2rem 0;
}

.proof-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.proof-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00B4D8;
}

.proof-label {
    font-size: 0.8rem;
    color: rgba(240, 244, 248, 0.5);
}

.proof-divider {
    width: 1px;
    height: 36px;
    background: rgba(0, 180, 216, 0.2);
}

/* ---- Sections ---- */
.landing-section { padding: 5rem 0; }

.landing-section-alt {
    background: rgba(255, 255, 255, 0.015);
    border-top: 1px solid rgba(0, 180, 216, 0.06);
    border-bottom: 1px solid rgba(0, 180, 216, 0.06);
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.section-tag {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #00B4D8;
}

.section-title {
    font-size: clamp(1.625rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #F0F4F8;
    margin: 0;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.section-sub {
    font-size: 1rem;
    color: rgba(240, 244, 248, 0.55);
    max-width: 480px;
    line-height: 1.6;
    margin: 0;
}

/* ---- Features ---- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 180, 216, 0.1);
    border-radius: 14px;
    padding: 1.75rem;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
    background: rgba(0, 180, 216, 0.05);
    border-color: rgba(0, 180, 216, 0.25);
    transform: translateY(-2px);
}

.feature-icon-wrap {
    width: 44px;
    height: 44px;
    background: rgba(0, 180, 216, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00B4D8;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1rem;
    font-weight: 700;
    color: #F0F4F8;
    margin: 0 0 0.5rem;
}

.feature-desc {
    font-size: 0.875rem;
    color: rgba(240, 244, 248, 0.55);
    line-height: 1.65;
    margin: 0;
}

/* ---- Steps ---- */
.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.step-item {
    flex: 1;
    max-width: 280px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #00B4D8;
    font-family: 'JetBrains Mono', monospace;
    line-height: 1;
    opacity: 0.7;
}

.step-title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #F0F4F8;
    margin: 0;
}

.step-desc {
    font-size: 0.875rem;
    color: rgba(240, 244, 248, 0.55);
    line-height: 1.65;
    margin: 0;
}

.step-arrow {
    font-size: 1.5rem;
    color: rgba(0, 180, 216, 0.4);
    font-weight: 300;
    flex-shrink: 0;
    margin-bottom: 2rem;
}

/* ---- Pricing ---- */
.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 180, 216, 0.12);
    border-radius: 16px;
    padding: 2rem;
    width: 280px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
}

.pricing-card-featured {
    background: rgba(15, 45, 94, 0.4);
    border-color: #00B4D8;
    box-shadow: 0 0 30px rgba(0, 180, 216, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #00B4D8;
    color: #0A1628;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.875rem;
    border-radius: 99px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
}

.pricing-plan-name {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(240, 244, 248, 0.6);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.pricing-currency { font-size: 1.25rem; font-weight: 600; color: #F0F4F8; }
.pricing-amount   { font-size: 3rem; font-weight: 800; color: #F0F4F8; line-height: 1; }
.pricing-period   { font-size: 0.875rem; color: rgba(240, 244, 248, 0.5); }

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    flex: 1;
}

.pricing-feature { font-size: 0.875rem; color: rgba(240, 244, 248, 0.7); }

/* ---- Final CTA ---- */
.landing-cta-final {
    background: linear-gradient(135deg, #070E1C 0%, #0F2D5E 100%);
    border-top: 1px solid rgba(0, 180, 216, 0.15);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.landing-cta-final::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(0, 180, 216, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-final-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
}

.cta-final-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #F0F4F8;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0;
}

.cta-final-sub {
    font-size: 1rem;
    color: rgba(240, 244, 248, 0.55);
    margin: 0;
}

/* ---- Footer ---- */
.landing-footer {
    background: #070E1C;
    border-top: 1px solid rgba(0, 180, 216, 0.08);
    padding: 1.5rem 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-copy { font-size: 0.8rem; color: rgba(240, 244, 248, 0.35); }

.footer-links { display: flex; gap: 1.5rem; }

.footer-a {
    font-size: 0.8rem;
    color: rgba(240, 244, 248, 0.45);
    text-decoration: none;
    transition: color 0.15s;
}

.footer-a:hover { color: #00B4D8; }

/* ---- Responsividade ---- */
@media (max-width: 900px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { flex-direction: column; align-items: center; }
    .step-arrow { transform: rotate(90deg); margin: 0; }
    .landing-nav-links { display: none; }
}

@media (max-width: 600px) {
    .features-grid { grid-template-columns: 1fr; }
    .proof-divider { display: none; }
    .proof-inner { gap: 1.5rem; }
    .mockup-sidebar { display: none; }
    .hero-br { display: none; }
}
