/* Landing Page CSS - SDR Digital AI Agency */

.landing-body {
    background-color: #0b0f19;
    color: #f8fafc;
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
}

/* Glass Header */
.landing-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 80px;
    z-index: 1000;
    backdrop-filter: blur(12px);
    background-color: rgba(11, 15, 25, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .landing-header {
        padding: 0 24px;
    }
}

.landing-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.25rem;
    color: #ffffff;
    text-decoration: none;
}

.landing-logo i {
    color: #6366f1;
}

.wehub-logo-icon {
    width: 32px;
    height: 32px;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
}

.wehub-title {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.wehub-title .wehub-we {
    background: linear-gradient(90deg, #8b5cf6, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.wehub-title .wehub-slash {
    background: linear-gradient(90deg, #3b82f6, #10b981);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.wehub-title .wehub-hub {
    color: #ffffff;
}

.landing-nav {
    display: flex;
    gap: 30px;
    list-style: none;
}

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

.landing-nav a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-login {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
}

.btn-start {
    background: linear-gradient(135deg, #6366f1, #3b82f6);
    color: white;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-start:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.45);
}

/* Hero Section */
.hero-section {
    padding: 180px 24px 100px 24px;
    text-align: center;
    position: relative;
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.08) 0%, transparent 60%);
}

.hero-tag {
    background-color: rgba(99, 102, 241, 0.1);
    color: #818cf8;
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 24px;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    max-width: 900px;
    margin: 0 auto 24px auto;
    background: linear-gradient(to right, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.hero-subtitle {
    font-size: 1.125rem;
    color: #94a3b8;
    max-width: 650px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Section Common */
.section-container {
    padding: 100px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .section-container {
        padding: 60px 24px;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    color: #6366f1;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #ffffff;
}

.section-desc {
    color: #94a3b8;
    max-width: 600px;
    margin: 12px auto 0 auto;
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background-color: #111827;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background-color: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.feature-desc {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Steps Section */
.steps-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 1024px) {
    .steps-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .steps-timeline {
        grid-template-columns: 1fr;
    }
}

.step-item {
    text-align: center;
    position: relative;
}

.step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #6366f1;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 20px auto;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.4);
}

.step-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-desc {
    color: #94a3b8;
    font-size: 0.875rem;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

.price-card {
    background-color: #111827;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s;
}

.price-card.featured {
    border-color: #6366f1;
    box-shadow: var(--shadow-glow);
    background-color: #161b2a;
}

.price-card.featured::before {
    content: "Mais Popular";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #6366f1;
    color: white;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.price-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.price-cost {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 24px;
}

.price-cost span {
    font-size: 1rem;
    color: #94a3b8;
    font-weight: 500;
}

.price-features {
    list-style: none;
    margin-bottom: 40px;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.875rem;
    color: #94a3b8;
}

.price-features li i {
    color: #10b981;
    width: 16px;
    height: 16px;
}

.btn-price {
    margin-top: auto;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    text-decoration: none;
    padding: 12px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.875rem;
    transition: all 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.price-card.featured .btn-price {
    background: linear-gradient(135deg, #6366f1, #3b82f6);
    border: none;
}

.btn-price:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.price-card.featured .btn-price:hover {
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    filter: brightness(1.1);
}

/* Footer */
.landing-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #475569;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .landing-footer {
        flex-direction: column;
        gap: 20px;
        padding: 40px 24px;
        text-align: center;
    }
}
