/* public_html/assets/css/landing.css */
/* RESET E BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    background: #ffffff;
    color: #1e293b;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* TIPOGRAFIA */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

.highlight {
    color: #3b82f6;
}

/* BOTÕES */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: #3b82f6;
    color: white;
}

.btn-primary:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: #3b82f6;
    border: 1px solid #3b82f6;
}

.btn-outline:hover {
    background: #f1f5f9;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

/* HEADER */
.landing-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #f1f5f9;
    z-index: 1000;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    color: #1e293b;
}

.logo-icon {
    color: #3b82f6;
}

.logo-highlight {
    color: #3b82f6;
}

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

.nav-link {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #3b82f6;
}

.nav-actions {
    display: flex;
    gap: 12px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #64748b;
    cursor: pointer;
}

/* HERO SECTION */
.hero-section {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.hero-title {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1e293b;
}

.hero-highlight {
    color: #3b82f6;
    position: relative;
}

.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(59, 130, 246, 0.1);
    z-index: -1;
}

.hero-subtitle {
    font-size: 20px;
    color: #64748b;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 4px;
}

.stat-label {
    color: #64748b;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-visual {
    max-width: 900px;
    margin: 0 auto;
}

.dashboard-preview {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
}

.preview-header {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.preview-dots {
    display: flex;
    gap: 6px;
}

.preview-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
}

.preview-title {
    flex: 1;
    text-align: center;
    font-weight: 500;
    color: #64748b;
}

.preview-content {
    display: flex;
    height: 300px;
}

.preview-sidebar {
    width: 200px;
    background: #f8fafc;
    border-right: 1px solid #e2e8f0;
    padding: 20px;
}

.preview-menu-item {
    padding: 12px 16px;
    margin-bottom: 4px;
    border-radius: 8px;
    color: #64748b;
    font-size: 14px;
}

.preview-menu-item.active {
    background: #eff6ff;
    color: #3b82f6;
}

.preview-main {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.preview-chart {
    height: 150px;
    background: linear-gradient(90deg, #f1f5f9, #e2e8f0);
    border-radius: 8px;
}

.preview-cards {
    display: flex;
    gap: 20px;
}

.preview-card {
    flex: 1;
    height: 80px;
    background: #f1f5f9;
    border-radius: 8px;
}

/* FEATURES SECTION */
.features-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1e293b;
}

.section-subtitle {
    font-size: 18px;
    color: #64748b;
}

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

.feature-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #eff6ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #3b82f6;
    font-size: 24px;
}

.feature-title {
    font-size: 20px;
    margin-bottom: 16px;
    color: #1e293b;
}

.feature-description {
    color: #64748b;
    margin-bottom: 24px;
    line-height: 1.6;
}

.feature-channels {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.channel-badge {
    padding: 6px 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    font-size: 13px;
    color: #64748b;
}

.channel-badge.whatsapp {
    background: #f0fdf4;
    border-color: #bbf7d0;
    color: #166534;
}

.channel-badge.instagram {
    background: #fdf2f8;
    border-color: #fbcfe8;
    color: #9d174d;
}

.feature-funnel {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.funnel-stage {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stage-label {
    width: 120px;
    font-size: 13px;
    color: #64748b;
}

.stage-bar {
    flex: 1;
    height: 20px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    border-radius: 10px;
}

.feature-bots {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bot-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.bot-avatar {
    width: 40px;
    height: 40px;
    background: #eff6ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
}

.bot-info {
    flex: 1;
}

.bot-name {
    font-weight: 500;
    font-size: 14px;
}

.bot-status {
    font-size: 12px;
    color: #64748b;
}

.bot-status.active {
    color: #16a34a;
}

/* PRICING SECTION */
.pricing-section {
    padding: 100px 0;
    background: #f8fafc;
}

.pricing-timeline {
    max-width: 500px;
    margin: 0 auto 60px;
}

.timeline {
    display: flex;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 4px;
}

.timeline-item {
    flex: 1;
    text-align: center;
    padding: 12px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s;
}

.timeline-item.active {
    background: #3b82f6;
    color: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border-color: #3b82f6;
    transform: translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #3b82f6;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 24px;
}

.plan-name {
    font-size: 24px;
    margin-bottom: 8px;
    color: #1e293b;
}

.plan-description {
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}

.pricing-price {
    margin-bottom: 32px;
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1;
}

.price-period {
    font-size: 16px;
    color: #64748b;
    font-weight: 400;
}

.price-user {
    color: #64748b;
    font-size: 14px;
    margin-top: 4px;
}

.pricing-features {
    flex: 1;
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: #475569;
}

.feature-item i {
    color: #16a34a;
}

.feature-item.disabled {
    color: #cbd5e1;
}

.feature-item.disabled i {
    color: #cbd5e1;
}

.pricing-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* DEMO SECTION */
.demo-section {
    padding: 100px 0;
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.demo-features {
    margin: 32px 0;
}

.demo-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #475569;
}

.demo-feature i {
    color: #16a34a;
}

.demo-form {
    display: flex;
    gap: 12px;
}

.demo-form .form-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 15px;
}

.demo-visual {
    display: flex;
    justify-content: center;
}

.demo-calendar {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    width: 300px;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    font-weight: 500;
    color: #1e293b;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.calendar-day {
    text-align: center;
    font-size: 12px;
    color: #64748b;
    padding: 8px 0;
    font-weight: 500;
}

.calendar-date {
    text-align: center;
    padding: 12px 0;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
}

.calendar-date:hover {
    background: #f1f5f9;
}

.calendar-date.selected {
    background: #3b82f6;
    color: white;
}

.calendar-event {
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.event-time {
    font-size: 9px;
}

.event-dot {
    width: 4px;
    height: 4px;
    background: currentColor;
    border-radius: 50%;
}

/* FOOTER */
.landing-footer {
    background: #1e293b;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-description {
    color: #cbd5e1;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.2s;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.footer-link {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-link:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #94a3b8;
    font-size: 14px;
}

.legal-link {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}

.legal-link:hover {
    color: white;
}

.footer-cookies {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #94a3b8;
    font-size: 14px;
}

.cookie-link {
    color: #3b82f6;
    text-decoration: none;
}

.cookie-btn {
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 13px;
    cursor: pointer;
}

/* RESPONSIVO */
@media (max-width: 992px) {
    .features-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .demo-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}