/**
 * Landing Page SaaS Premium - Design System
 * Padrão: Stripe / Linear / Vercel
 * 
 * Paleta neutra, tipografia Inter, whitespace generoso,
 * design minimalista e executivo
 */

/* ============================================
   TOKENS DE DESIGN
   ============================================ */

:root {
    /* Cores neutras */
    --lp-gray-50: #f9fafb;
    --lp-gray-100: #f3f4f6;
    --lp-gray-200: #e5e7eb;
    --lp-gray-300: #d1d5db;
    --lp-gray-400: #9ca3af;
    --lp-gray-500: #6b7280;
    --lp-gray-600: #4b5563;
    --lp-gray-700: #374151;
    --lp-gray-800: #1f2937;
    --lp-gray-900: #111827;
    
    /* Acento elegante */
    --lp-accent: #2563eb;
    --lp-accent-light: #3b82f6;
    --lp-accent-dark: #1e40af;
    
    /* Espaçamento */
    --lp-space-1: 0.25rem;
    --lp-space-2: 0.5rem;
    --lp-space-3: 0.75rem;
    --lp-space-4: 1rem;
    --lp-space-6: 1.5rem;
    --lp-space-8: 2rem;
    --lp-space-12: 3rem;
    --lp-space-16: 4rem;
    --lp-space-20: 5rem;
    --lp-space-24: 6rem;
    
    /* Tipografia */
    --lp-font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --lp-font-weight-normal: 400;
    --lp-font-weight-medium: 500;
    --lp-font-weight-semibold: 600;
    --lp-font-weight-bold: 700;
    
    /* Radius */
    --lp-radius-sm: 0.375rem;
    --lp-radius-md: 0.5rem;
    --lp-radius-lg: 0.75rem;
    --lp-radius-xl: 1rem;
    
    /* Shadows */
    --lp-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --lp-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --lp-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* ============================================
   BASE
   ============================================ */

body.landing-saas {
    font-family: var(--lp-font-family);
    color: var(--lp-gray-900);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   NAVBAR - Minimalista e Fixa
   ============================================ */

.landing-saas .navbar {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--lp-gray-200);
    padding: var(--lp-space-4) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.landing-saas .navbar-brand {
    font-weight: var(--lp-font-weight-bold);
    font-size: 1.125rem;
    color: var(--lp-gray-900) !important;
    text-decoration: none;
}

.landing-saas .navbar-nav .nav-link {
    color: var(--lp-gray-600) !important;
    font-weight: var(--lp-font-weight-medium);
    font-size: 0.9375rem;
    padding: var(--lp-space-2) var(--lp-space-4) !important;
    transition: color 0.15s ease;
}

.landing-saas .navbar-nav .nav-link:hover {
    color: var(--lp-gray-900) !important;
}

.landing-saas .navbar-nav {
    gap: var(--lp-space-1);
}

/* Navbar Mobile - Ajuste para hamburger ao lado do logo */
.landing-saas .navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.landing-saas .navbar-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.landing-saas .navbar-toggler {
    border: 1px solid var(--lp-gray-300);
    padding: 0.5rem 0.75rem;
    align-self: center;
    margin-left: auto;
    flex-shrink: 0;
}

.landing-saas .navbar-collapse {
    flex-basis: 100%;
    flex-grow: 0;
}

@media (max-width: 991.98px) {
    .landing-saas .navbar .container {
        flex-wrap: wrap;
    }
    
    .landing-saas .navbar-brand {
        flex: 0 0 auto;
        margin-right: auto;
    }
    
    .landing-saas .navbar-brand img {
        height: 60px !important;
        max-height: 60px;
    }
    
    .landing-saas .navbar-toggler {
        order: 2;
        margin-left: var(--lp-space-2);
    }
    
    .landing-saas .navbar-collapse {
        order: 3;
        width: 100%;
        margin-top: var(--lp-space-4);
    }
}

/* ============================================
   HERO - Executivo e Impactante
   ============================================ */

.landing-saas .hero-section {
    background: linear-gradient(to bottom, #ffffff 0%, var(--lp-gray-50) 100%);
    padding: var(--lp-space-24) 0 var(--lp-space-20);
    border-bottom: 1px solid var(--lp-gray-200);
}

.landing-saas .hero-content h1 {
    font-size: 3.5rem;
    font-weight: var(--lp-font-weight-bold);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--lp-gray-900);
    margin-bottom: var(--lp-space-6);
    max-width: 800px;
}

.landing-saas .hero-content .lead {
    font-size: 1.25rem;
    color: var(--lp-gray-600);
    line-height: 1.7;
    margin-bottom: var(--lp-space-8);
    max-width: 600px;
}

.landing-saas .hero-cta {
    display: flex;
    gap: var(--lp-space-4);
    flex-wrap: wrap;
    margin-top: var(--lp-space-8);
    justify-content: center;
}

@media (max-width: 767.98px) {
    .landing-saas .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .landing-saas .hero-cta .btn-hero-primary,
    .landing-saas .hero-cta .btn-hero-secondary {
        width: 100%;
        max-width: 300px;
    }
}

.landing-saas .btn-hero-primary {
    background: var(--lp-gray-900);
    color: white;
    font-weight: var(--lp-font-weight-semibold);
    padding: var(--lp-space-4) var(--lp-space-8);
    border-radius: var(--lp-radius-md);
    border: none;
    font-size: 1rem;
    transition: all 0.15s ease;
    text-decoration: none !important;
}

.landing-saas .btn-hero-primary:hover {
    background: var(--lp-gray-800);
    transform: translateY(-1px);
    box-shadow: var(--lp-shadow-md);
    text-decoration: none !important;
}

.landing-saas .btn-hero-secondary {
    background: white;
    color: var(--lp-gray-900);
    font-weight: var(--lp-font-weight-semibold);
    padding: var(--lp-space-4) var(--lp-space-8);
    border-radius: var(--lp-radius-md);
    border: 1px solid var(--lp-gray-300);
    font-size: 1rem;
    transition: all 0.15s ease;
    text-decoration: none !important;
}

.landing-saas .btn-hero-secondary:hover {
    background: var(--lp-gray-50);
    border-color: var(--lp-gray-400);
    text-decoration: none !important;
}

/* Remover underscores de todos os links */
.landing-saas a {
    text-decoration: none;
}

.landing-saas a:hover {
    text-decoration: none;
}

/* ============================================
   PROVA SOCIAL - Logos e Métricas
   ============================================ */

.landing-saas .social-proof {
    padding: var(--lp-space-16) 0;
    border-bottom: 1px solid var(--lp-gray-200);
    background: white;
}

.landing-saas .social-proof-title {
    font-size: 0.875rem;
    font-weight: var(--lp-font-weight-medium);
    color: var(--lp-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    margin-bottom: var(--lp-space-8);
}

.landing-saas .social-proof-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--lp-space-12);
    /* opacity: 0.6; */
}

.landing-saas .social-proof-logos img {
    /* height: 24px; */
    /* filter: grayscale(100%); */
    /* opacity: 0.5; */
}

.landing-saas .client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--lp-space-4);
    border-radius: var(--lp-radius-md);
    transition: all 0.2s ease;
    text-decoration: none;
    min-height: 60px;
}

.landing-saas .client-logo:hover {
    background: var(--lp-gray-50);
    opacity: 1;
    transform: translateY(-2px);
}

.landing-saas .client-logo-img {
    height: auto;
    /* max-height: 40px; */
    width: auto;
    max-width: 200px;
    /* filter: grayscale(100%) opacity(0.6); */
    transition: all 0.2s ease;
    object-fit: contain;
}

.landing-saas .client-logo:hover .client-logo-img {
    filter: grayscale(0%) opacity(1);
}

.landing-saas .client-logo-fallback {
    color: var(--lp-gray-500);
    font-size: 0.875rem;
    font-weight: var(--lp-font-weight-medium);
    text-align: center;
}

/* Blog Posts Section */
.landing-saas .blog-posts-section {
    padding: var(--ds-space-20) 0;
    background: white;
}

.landing-saas .blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--ds-space-6);
    margin-top: var(--ds-space-12);
}

.landing-saas .blog-post-card {
    background: white;
    border: 1px solid var(--lp-gray-200);
    border-radius: var(--lp-radius-xl);
    overflow: hidden;
    transition: all 0.3s ease;
}

.landing-saas .blog-post-card:hover {
    box-shadow: var(--lp-shadow-md);
    transform: translateY(-4px);
}

.landing-saas .blog-post-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--lp-gray-100);
}

.landing-saas .blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.landing-saas .blog-post-card:hover .blog-post-image img {
    transform: scale(1.05);
}

.landing-saas .blog-post-content {
    padding: var(--ds-space-6);
}

.landing-saas .blog-post-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: var(--lp-font-weight-semibold);
    color: var(--ds-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--ds-space-3);
}

.landing-saas .blog-post-content h3 {
    font-size: 1.25rem;
    font-weight: var(--lp-font-weight-bold);
    margin-bottom: var(--ds-space-3);
    line-height: 1.4;
}

.landing-saas .blog-post-content h3 a {
    color: var(--ds-text-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.landing-saas .blog-post-content h3 a:hover {
    color: var(--ds-primary);
}

.landing-saas .blog-post-content p {
    color: var(--lp-gray-600);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: var(--ds-space-4);
}

.landing-saas .blog-post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--ds-space-4);
    border-top: 1px solid var(--lp-gray-200);
}

.landing-saas .blog-post-date {
    font-size: 0.875rem;
    color: var(--lp-gray-500);
    display: flex;
    align-items: center;
    gap: var(--ds-space-2);
}

.landing-saas .blog-post-link {
    font-size: 0.875rem;
    font-weight: var(--lp-font-weight-semibold);
    color: var(--ds-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--ds-space-2);
    transition: gap 0.2s ease;
}

.landing-saas .blog-post-link:hover {
    gap: var(--ds-space-3);
}

/* ============================================
   BENEFÍCIOS - Diferenciais Limpos
   ============================================ */

.landing-saas .benefits-section {
    padding: var(--lp-space-24) 0;
    background: white;
}

.landing-saas .section-header {
    text-align: center;
    margin-bottom: var(--lp-space-20);
}

.landing-saas .section-header h2 {
    font-size: 2.5rem;
    font-weight: var(--lp-font-weight-bold);
    color: var(--lp-gray-900);
    margin-bottom: var(--lp-space-4);
    letter-spacing: -0.02em;
}

.landing-saas .section-header p {
    font-size: 1.125rem;
    color: var(--lp-gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.landing-saas .benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--lp-space-8);
    max-width: 1200px;
    margin: 0 auto;
}

.landing-saas .benefit-card {
    padding: var(--lp-space-8);
    border: 1px solid var(--lp-gray-200);
    border-radius: var(--lp-radius-lg);
    background: white;
    transition: all 0.15s ease;
}

.landing-saas .benefit-card:hover {
    border-color: var(--lp-gray-300);
    box-shadow: var(--lp-shadow-sm);
}

.landing-saas .benefit-card h3 {
    font-size: 1.25rem;
    font-weight: var(--lp-font-weight-semibold);
    color: var(--lp-gray-900);
    margin-bottom: var(--lp-space-3);
}

.landing-saas .benefit-card p {
    font-size: 1rem;
    color: var(--lp-gray-600);
    line-height: 1.7;
}

.landing-saas .benefit-icon {
    width: 48px;
    height: 48px;
    background: var(--lp-gray-100);
    border-radius: var(--lp-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--lp-space-4);
    font-size: 1.5rem;
}

/* ============================================
   DEMONSTRAÇÃO - Screens Limpas
   ============================================ */

.landing-saas .demo-section {
    padding: var(--lp-space-24) 0;
    background: var(--lp-gray-50);
    border-top: 1px solid var(--lp-gray-200);
    border-bottom: 1px solid var(--lp-gray-200);
}

.landing-saas .demo-container {
    max-width: 1200px;
    margin: 0 auto;
}

.landing-saas .demo-image {
    border-radius: var(--lp-radius-xl);
    border: 1px solid var(--lp-gray-200);
    box-shadow: var(--lp-shadow-lg);
    overflow: hidden;
    background: white;
}

.landing-saas .demo-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   CASOS / DEPOIMENTOS - Sintéticos
   ============================================ */

.landing-saas .testimonials-section {
    padding: var(--lp-space-24) 0;
    background: white;
}

.landing-saas .testimonial-card {
    padding: var(--lp-space-8);
    border: 1px solid var(--lp-gray-200);
    border-radius: var(--lp-radius-lg);
    background: white;
}

.landing-saas .testimonial-text {
    font-size: 1.125rem;
    color: var(--lp-gray-700);
    line-height: 1.7;
    margin-bottom: var(--lp-space-6);
    font-style: italic;
}

.landing-saas .testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--lp-space-4);
}

.landing-saas .testimonial-author-name {
    font-weight: var(--lp-font-weight-semibold);
    color: var(--lp-gray-900);
    font-size: 0.9375rem;
}

.landing-saas .testimonial-author-title {
    color: var(--lp-gray-600);
    font-size: 0.875rem;
}

/* ============================================
   PLANOS / PRICING - Elegante
   ============================================ */

.landing-saas .pricing-section {
    padding: var(--lp-space-24) 0;
    background: var(--lp-gray-50);
    border-top: 1px solid var(--lp-gray-200);
}

.landing-saas .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--lp-space-6);
    max-width: 1200px;
    margin: 0 auto;
}

.landing-saas .pricing-card-premium {
    background: white;
    border: 1px solid var(--lp-gray-200);
    border-radius: var(--lp-radius-lg);
    padding: var(--lp-space-8);
    transition: all 0.15s ease;
    position: relative;
}

.landing-saas .pricing-card-premium:hover {
    border-color: var(--lp-gray-300);
    box-shadow: var(--lp-shadow-md);
}

.landing-saas .pricing-card-premium.featured {
    border-color: var(--lp-gray-900);
    border-width: 2px;
}

.landing-saas .pricing-card-premium .pricing-badge {
    position: absolute;
    top: var(--lp-space-4);
    right: var(--lp-space-4);
    background: var(--lp-gray-900);
    color: white;
    padding: var(--lp-space-1) var(--lp-space-3);
    border-radius: var(--lp-radius-sm);
    font-size: 0.75rem;
    font-weight: var(--lp-font-weight-semibold);
}

.landing-saas .pricing-card-premium h3 {
    font-size: 1.5rem;
    font-weight: var(--lp-font-weight-bold);
    color: var(--lp-gray-900);
    margin-bottom: var(--lp-space-2);
}

.landing-saas .pricing-card-premium .pricing-description {
    color: var(--lp-gray-600);
    font-size: 0.9375rem;
    margin-bottom: var(--lp-space-6);
}

.landing-saas .pricing-card-premium .pricing-amount {
    font-size: 3rem;
    font-weight: var(--lp-font-weight-bold);
    color: var(--lp-gray-900);
    line-height: 1;
    margin-bottom: var(--lp-space-1);
}

.landing-saas .pricing-card-premium .pricing-period {
    color: var(--lp-gray-600);
    font-size: 1rem;
    margin-bottom: var(--lp-space-8);
}

.landing-saas .pricing-card-premium .btn-pricing {
    width: 100%;
    background: var(--lp-gray-900);
    color: white;
    font-weight: var(--lp-font-weight-semibold);
    padding: var(--lp-space-4);
    border-radius: var(--lp-radius-md);
    border: none;
    font-size: 1rem;
    margin-bottom: var(--lp-space-4);
    transition: all 0.15s ease;
}

.landing-saas .pricing-card-premium .btn-pricing:hover {
    background: var(--lp-gray-800);
    transform: translateY(-1px);
}

/* ============================================
   FAQ - Minimalista
   ============================================ */

.landing-saas .faq-section {
    padding: var(--lp-space-24) 0;
    background: white;
    border-top: 1px solid var(--lp-gray-200);
}

.landing-saas .faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.landing-saas .faq-item {
    border-bottom: 1px solid var(--lp-gray-200);
    padding: var(--lp-space-6) 0;
}

.landing-saas .faq-question {
    font-size: 1.125rem;
    font-weight: var(--lp-font-weight-semibold);
    color: var(--lp-gray-900);
    margin-bottom: var(--lp-space-3);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.landing-saas .faq-question:hover {
    color: var(--lp-gray-700);
}

.landing-saas .faq-answer {
    font-size: 1rem;
    color: var(--lp-gray-600);
    line-height: 1.7;
    padding-top: var(--lp-space-3);
}

/* ============================================
   RODAPÉ - Discreto
   ============================================ */

.landing-saas footer {
    background: var(--lp-gray-900);
    color: var(--lp-gray-400);
    padding: var(--lp-space-16) 0 var(--lp-space-8);
    border-top: 1px solid var(--lp-gray-800);
}

.landing-saas footer h6 {
    font-size: 0.875rem;
    font-weight: var(--lp-font-weight-semibold);
    color: white;
    margin-bottom: var(--lp-space-4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.landing-saas footer a {
    color: var(--lp-gray-400);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.15s ease;
}

.landing-saas footer a:hover {
    color: white;
}

.landing-saas footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.landing-saas footer ul li {
    margin-bottom: var(--lp-space-2);
}

.landing-saas footer .footer-bottom {
    border-top: 1px solid var(--lp-gray-800);
    padding-top: var(--lp-space-8);
    margin-top: var(--lp-space-8);
    text-align: center;
    color: var(--lp-gray-500);
    font-size: 0.875rem;
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */

/* ============================================
   HERO BULLETS
   ============================================ */

.landing-saas .hero-bullets {
    list-style: none;
    padding: 0;
    margin: var(--lp-space-8) 0;
}

.landing-saas .hero-bullets li {
    display: flex;
    align-items: center;
    gap: var(--lp-space-3);
    margin-bottom: var(--lp-space-3);
}

.landing-saas .hero-bullets li:last-child {
    margin-bottom: 0;
}

.landing-saas .hero-bullets i {
    color: var(--ds-green);
    font-size: 1.25rem;
}

.landing-saas .hero-bullets span {
    font-size: 1rem;
    color: var(--ds-text-secondary);
}

/* ============================================
   BENEFIT CARDS - Cores Específicas
   ============================================ */

.landing-saas .benefit-card.benefit-card--cyan {
    border: 3px solid var(--ds-cyan) !important;
}

.landing-saas .benefit-card.benefit-card--cyan .benefit-icon {
    background: rgba(var(--ds-cyan-rgb), 0.1) !important;
    color: var(--ds-cyan) !important;
}

.landing-saas .benefit-card.benefit-card--green {
    border: 3px solid var(--ds-green) !important;
}

.landing-saas .benefit-card.benefit-card--green .benefit-icon {
    background: rgba(var(--ds-green-rgb), 0.1) !important;
    color: var(--ds-green) !important;
}

.landing-saas .benefit-card.benefit-card--pink {
    border: 3px solid var(--ds-pink) !important;
}

.landing-saas .benefit-card.benefit-card--pink .benefit-icon {
    background: rgba(var(--ds-pink-rgb), 0.1) !important;
    color: var(--ds-pink) !important;
}

.landing-saas .benefit-card.benefit-card--orange {
    border: 3px solid var(--ds-orange) !important;
}

.landing-saas .benefit-card.benefit-card--orange .benefit-icon {
    background: rgba(var(--ds-orange-rgb), 0.1) !important;
    color: var(--ds-orange) !important;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.landing-saas .features-section {
    padding: var(--lp-space-24) 0;
    background: var(--lp-gray-50);
    border-top: 1px solid var(--lp-gray-200);
}

.landing-saas .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--lp-space-8);
    max-width: 1200px;
    margin: 0 auto;
}

.landing-saas .feature-card {
    padding: var(--lp-space-8);
    border: 3px solid var(--lp-gray-200);
    border-radius: var(--lp-radius-xl);
    background: white;
    transition: all var(--lp-shadow-sm);
}

.landing-saas .feature-card:hover {
    box-shadow: var(--lp-shadow-md);
}

.landing-saas .feature-card.feature-card--cyan {
    border-color: var(--ds-cyan);
}

.landing-saas .feature-card.feature-card--green {
    border-color: var(--ds-green);
}

.landing-saas .feature-card.feature-card--pink {
    border-color: var(--ds-pink);
}

.landing-saas .feature-card.feature-card--orange {
    border-color: var(--ds-orange);
}

.landing-saas .feature-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--lp-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--lp-space-6);
    font-size: 32px;
}

.landing-saas .feature-card--cyan .feature-icon {
    background: rgba(var(--ds-cyan-rgb), 0.1);
    color: var(--ds-cyan);
}

.landing-saas .feature-card--green .feature-icon {
    background: rgba(var(--ds-green-rgb), 0.1);
    color: var(--ds-green);
}

.landing-saas .feature-card--pink .feature-icon {
    background: rgba(var(--ds-pink-rgb), 0.1);
    color: var(--ds-pink);
}

.landing-saas .feature-card--orange .feature-icon {
    background: rgba(var(--ds-orange-rgb), 0.1);
    color: var(--ds-orange);
}

.landing-saas .feature-card h3 {
    font-size: 1.5rem;
    font-weight: var(--lp-font-weight-bold);
    margin-bottom: var(--lp-space-4);
    color: var(--lp-gray-900);
}

.landing-saas .feature-card p {
    color: var(--lp-gray-600);
    margin-bottom: var(--lp-space-6);
    line-height: 1.7;
}

.landing-saas .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.landing-saas .feature-list li {
    display: flex;
    align-items: start;
    gap: var(--lp-space-2);
    margin-bottom: var(--lp-space-2);
}

.landing-saas .feature-list li:last-child {
    margin-bottom: 0;
}

.landing-saas .feature-list i {
    color: var(--ds-green);
    margin-top: 2px;
}

.landing-saas .feature-list span {
    color: var(--lp-gray-600);
    font-size: 0.9375rem;
}

/* ============================================
   USE CASES SECTION
   ============================================ */

.landing-saas .use-cases-section {
    padding: var(--lp-space-24) 0;
    background: white;
    border-top: 1px solid var(--lp-gray-200);
}

.landing-saas .use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--lp-space-8);
    max-width: 1200px;
    margin: 0 auto;
}

.landing-saas .use-case-card {
    padding: var(--lp-space-8);
    border: 1px solid var(--lp-gray-200);
    border-radius: var(--lp-radius-xl);
    background: white;
    transition: all 0.15s ease;
}

.landing-saas .use-case-card:hover {
    box-shadow: var(--lp-shadow-sm);
}

.landing-saas .use-case-card h3 {
    font-size: 1.5rem;
    font-weight: var(--lp-font-weight-bold);
    margin-bottom: var(--lp-space-4);
    color: var(--ds-primary);
}

.landing-saas .use-case-card > p {
    color: var(--lp-gray-600);
    margin-bottom: var(--lp-space-6);
    line-height: 1.7;
}

.landing-saas .benefits-list {
    border-top: 1px solid var(--lp-gray-200);
    padding-top: var(--lp-space-6);
}

.landing-saas .benefit-item {
    display: flex;
    align-items: center;
    gap: var(--lp-space-3);
    margin-bottom: var(--lp-space-3);
}

.landing-saas .benefit-item:last-child {
    margin-bottom: 0;
}

/* Chatbot Mockup nos Cards de Casos de Uso */
.landing-saas .use-case-chatbot-demo {
    margin-bottom: var(--lp-space-6);
    display: flex;
    justify-content: center;
}

.landing-saas .chatbot-mockup {
    width: 100%;
    max-width: 320px;
    height: 280px;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    position: relative;
}

.landing-saas .chatbot-mockup-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    border-bottom: 1px solid #e5e7eb;
    background: #ffffff;
}

.landing-saas .chatbot-mockup-avatar {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef2ff;
    border: 1px solid #e5e7eb;
    font-size: 14px;
}

.landing-saas .chatbot-mockup-title {
    font-weight: 700;
    font-size: 14px;
    color: #0b0f14;
}

.landing-saas .chatbot-mockup-messages {
    flex: 1;
    overflow-y: auto;
    padding: 12px 14px;
    background: #fafafa;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.landing-saas .chatbot-mockup-message {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.landing-saas .chatbot-mockup-message--user {
    flex-direction: row-reverse;
}

.landing-saas .chatbot-mockup-message--bot {
    flex-direction: row;
}

.landing-saas .chatbot-mockup-bubble {
    max-width: 75%;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: #0b0f14;
    line-height: 1.5;
    font-size: 13px;
    white-space: pre-wrap;
}

.landing-saas .chatbot-mockup-message--user .chatbot-mockup-bubble {
    background: #e7f0ff;
    border-color: #dbeafe;
}

.landing-saas .chatbot-mockup-message--bot .chatbot-mockup-bubble {
    background: #ffffff;
    border-color: #e5e7eb;
}

/* Variações de cor por tipo de chatbot */
.landing-saas .chatbot-mockup--support .chatbot-mockup-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.landing-saas .chatbot-mockup--support .chatbot-mockup-header .chatbot-mockup-title,
.landing-saas .chatbot-mockup--support .chatbot-mockup-header .chatbot-mockup-avatar {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.landing-saas .chatbot-mockup--sales .chatbot-mockup-header {
    background: linear-gradient(135deg, #00D9A3 0%, #00C2FF 100%);
}

.landing-saas .chatbot-mockup--sales .chatbot-mockup-header .chatbot-mockup-title,
.landing-saas .chatbot-mockup--sales .chatbot-mockup-header .chatbot-mockup-avatar {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.landing-saas .chatbot-mockup--content .chatbot-mockup-header {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.landing-saas .chatbot-mockup--content .chatbot-mockup-header .chatbot-mockup-title,
.landing-saas .chatbot-mockup--content .chatbot-mockup-header .chatbot-mockup-avatar {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.landing-saas .chatbot-mockup--sales-team .chatbot-mockup-header {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.landing-saas .chatbot-mockup--sales-team .chatbot-mockup-header .chatbot-mockup-title,
.landing-saas .chatbot-mockup--sales-team .chatbot-mockup-header .chatbot-mockup-avatar {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.landing-saas .chatbot-mockup--ecommerce .chatbot-mockup-header {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
}

.landing-saas .chatbot-mockup--ecommerce .chatbot-mockup-header .chatbot-mockup-title,
.landing-saas .chatbot-mockup--ecommerce .chatbot-mockup-header .chatbot-mockup-avatar {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.landing-saas .chatbot-mockup--training .chatbot-mockup-header {
    background: linear-gradient(135deg, #A8E6CF 0%, #3FC1C9 100%);
}

.landing-saas .chatbot-mockup--training .chatbot-mockup-header .chatbot-mockup-title,
.landing-saas .chatbot-mockup--training .chatbot-mockup-header .chatbot-mockup-avatar {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.landing-saas .chatbot-mockup--executive .chatbot-mockup-header {
    background: linear-gradient(135deg, #434343 0%, #000000 100%);
}

.landing-saas .chatbot-mockup--executive .chatbot-mockup-header .chatbot-mockup-title,
.landing-saas .chatbot-mockup--executive .chatbot-mockup-header .chatbot-mockup-avatar {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Responsividade */
@media (max-width: 768px) {
    .landing-saas .chatbot-mockup {
        max-width: 100%;
        height: 240px;
    }
    
    .landing-saas .use-case-chatbot-demo {
        margin-bottom: var(--lp-space-4);
    }
}

.landing-saas .benefit-item i {
    font-size: 1.25rem;
}

.landing-saas .benefit-item i.bi-clock,
.landing-saas .benefit-item i.bi-file-earmark-text,
.landing-saas .benefit-item i.bi-bullseye {
    color: var(--ds-primary);
}

.landing-saas .benefit-item i.bi-graph-up-arrow,
.landing-saas .benefit-item i.bi-cash-stack,
.landing-saas .benefit-item i.bi-rocket-takeoff,
.landing-saas .benefit-item i.bi-lightning-charge,
.landing-saas .benefit-item i.bi-people {
    color: var(--ds-green);
}

.landing-saas .benefit-item span {
    color: var(--lp-gray-600);
    font-weight: var(--lp-font-weight-semibold);
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

.landing-saas .how-it-works-section {
    padding: var(--lp-space-24) 0;
    background: var(--ds-bg-blue);
    border-top: 1px solid var(--lp-gray-200);
}

.landing-saas .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--lp-space-8);
    max-width: 1000px;
    margin: 0 auto;
}

.landing-saas .step-card {
    text-align: center;
    padding: var(--lp-space-8);
}

.landing-saas .step-icon {
    width: 80px;
    height: 80px;
    background: var(--ds-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--lp-space-6);
}

.landing-saas .step-icon i {
    font-size: 40px;
    color: white;
}

.landing-saas .step-card h3 {
    font-size: 1.5rem;
    font-weight: var(--lp-font-weight-bold);
    margin-bottom: var(--lp-space-4);
    color: var(--lp-gray-900);
}

.landing-saas .step-card p {
    color: var(--lp-gray-600);
    line-height: 1.7;
}

/* ============================================
   SECTION DIVIDERS (SVG)
   ============================================ */

.landing-saas .section-divider {
    background: transparent;
    padding: 0;
    margin: 0;
    display: block;
    width: 100%;
}

.landing-saas .section-divider svg {
    display: block;
    width: 100%;
    height: auto;
}

.landing-saas .section-divider--purple {
    background: var(--ds-bg-purple);
}

.landing-saas .section-divider--blue {
    background: var(--ds-bg-blue);
}

.landing-saas .section-divider--white {
    background: white;
}

/* ============================================
   SOCIAL PROOF HEADER
   ============================================ */

.landing-saas .social-proof .section-header h2 {
    font-size: 1.5rem;
    margin-bottom: var(--lp-space-2);
}

.landing-saas .social-proof .section-header p {
    font-size: 1rem;
    color: var(--lp-gray-600);
    max-width: 700px;
    margin: 0 auto;
}

.landing-saas .logo-placeholder {
    padding: var(--lp-space-6);
    background: var(--lp-gray-50);
    border-radius: var(--lp-radius-lg);
    min-width: 150px;
    text-align: center;
    color: var(--lp-gray-400);
    font-size: 0.875rem;
    font-weight: var(--lp-font-weight-medium);
}

/* ============================================
   PRICING INFO BOX
   ============================================ */

.landing-saas .pricing-info {
    text-align: center;
    margin-bottom: var(--lp-space-12);
    padding: var(--lp-space-6);
    background: var(--ds-bg-blue);
    border-radius: var(--lp-radius-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.landing-saas .pricing-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--lp-space-6);
    max-width: 800px;
    margin: 0 auto;
}

.landing-saas .pricing-info-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: var(--lp-space-2);
}

.landing-saas .pricing-info-item i {
    color: var(--ds-green);
    font-size: 1.25rem;
}

.landing-saas .pricing-info-item span {
    color: var(--lp-gray-600);
    font-size: 0.9375rem;
    font-weight: var(--lp-font-weight-medium);
}

.landing-saas .pricing-card-premium {
    position: relative;
}

.landing-saas .pricing-card-premium .pricing-badge {
    position: absolute;
    top: var(--ds-space-4);
    right: var(--ds-space-4);
    background: var(--ds-green);
    color: white;
    padding: var(--ds-space-1) var(--ds-space-3);
    border-radius: var(--ds-radius-sm);
    font-size: 0.75rem;
    font-weight: var(--ds-font-weight-semibold);
}

.landing-saas .pricing-card-premium h3 {
    font-size: 1.5rem;
    font-weight: var(--ds-font-weight-bold);
    color: var(--ds-text-primary);
    margin-bottom: var(--ds-space-2);
}

.landing-saas .pricing-description {
    color: var(--ds-text-secondary);
    font-size: 0.9375rem;
    margin-bottom: var(--ds-space-6);
}

.landing-saas .pricing-amount {
    font-size: 3rem;
    font-weight: var(--ds-font-weight-bold);
    color: var(--ds-text-primary);
    line-height: 1;
    margin-bottom: var(--ds-space-1);
}

.landing-saas .pricing-period {
    color: var(--ds-text-secondary);
    font-size: 1rem;
    margin-bottom: var(--ds-space-8);
}

.landing-saas .pricing-savings {
    color: var(--ds-green);
    font-size: 0.875rem;
    margin-bottom: var(--ds-space-8);
    font-weight: var(--ds-font-weight-medium);
}

.landing-saas .btn-pricing {
    width: 100%;
    background: var(--ds-primary);
    color: white;
    font-weight: var(--ds-font-weight-semibold);
    padding: var(--ds-space-4);
    border-radius: var(--ds-radius-md);
    border: none;
    font-size: 1rem;
    margin-bottom: var(--ds-space-4);
    text-decoration: none;
    display: block;
    text-align: center;
    transition: all var(--ds-transition-base);
}

.landing-saas .pricing-trial {
    text-align: center;
    color: var(--ds-text-secondary);
    font-size: 0.875rem;
    margin: 0;
}

.landing-saas .pricing-empty {
    text-align: center;
    padding: var(--lp-space-12);
}

.landing-saas .pricing-empty p {
    color: var(--lp-gray-600);
    font-size: 1.125rem;
}

.landing-saas .pricing-empty .btn-hero-primary {
    display: inline-block;
    margin-top: var(--lp-space-4);
}

/* ============================================
   FAQ ACCORDION
   ============================================ */

.landing-saas .faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.landing-saas .faq-accordion-item {
    background: white;
    border: 2px solid var(--lp-gray-200);
    border-radius: var(--lp-radius-lg);
    padding: var(--lp-space-6);
    margin-bottom: var(--lp-space-4);
    transition: all 0.15s ease;
}

.landing-saas .faq-accordion-item:hover {
    border-color: var(--ds-primary);
}

.landing-saas .faq-accordion-button {
    background: none;
    border: none;
    color: var(--lp-gray-900);
    font-weight: var(--lp-font-weight-semibold);
    font-size: 1.125rem;
    padding: 0;
    width: 100%;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.landing-saas .faq-accordion-button .bi-chevron-down {
    color: var(--ds-primary);
    transition: transform 0.15s ease;
}

.landing-saas .faq-accordion-button:not(.collapsed) .bi-chevron-down {
    transform: rotate(180deg);
}

.landing-saas .faq-accordion-body {
    padding-top: var(--lp-space-4);
    color: var(--lp-gray-600);
    line-height: 1.7;
}

/* ============================================
   CTA FINAL SECTION
   ============================================ */

.landing-saas .cta-final-section {
    padding: var(--lp-space-24) 0;
    background: var(--ds-bg-purple);
    border-top: 1px solid var(--lp-gray-200);
}

.landing-saas .cta-final-actions {
    text-align: center;
    margin-top: var(--lp-space-12);
}

.landing-saas .cta-final-buttons {
    display: flex;
    gap: var(--lp-space-4);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--lp-space-12);
}

.landing-saas .cta-final-buttons .btn-hero-primary {
    font-size: 1.125rem;
    padding: var(--lp-space-5) var(--lp-space-10);
}

.landing-saas .cta-final-buttons .btn-hero-secondary {
    font-size: 1.125rem;
    padding: var(--lp-space-5) var(--lp-space-10);
}

.landing-saas .cta-guarantees {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--lp-space-6);
    max-width: 800px;
    margin: 0 auto;
}

.landing-saas .cta-guarantee-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--lp-space-2);
}

.landing-saas .cta-guarantee-item i {
    color: var(--ds-green);
    font-size: 1.25rem;
}

.landing-saas .cta-guarantee-item span {
    color: var(--lp-gray-900);
    font-size: 0.9375rem;
    font-weight: var(--lp-font-weight-medium);
}

/* ============================================
   FOOTER COMPLETE
   ============================================ */

.landing-saas footer {
    background: var(--ds-purple);
    color: white;
    padding: var(--lp-space-16) 0 var(--lp-space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.landing-saas footer .footer-logo {
    margin-bottom: var(--lp-space-4);
    filter: brightness(0) invert(1);
}

.landing-saas footer .footer-heading {
    font-size: 0.875rem;
    font-weight: var(--lp-font-weight-semibold);
    color: white;
    margin-bottom: var(--lp-space-4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.landing-saas footer .footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-top: var(--lp-space-4);
    line-height: 1.6;
}

.landing-saas footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.landing-saas footer .footer-links li {
    margin-bottom: var(--lp-space-2);
}

.landing-saas footer .footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.15s ease;
}

.landing-saas footer .footer-links a:hover {
    color: white;
}

.landing-saas footer .footer-social-links {
    display: flex;
    gap: var(--lp-space-4);
    margin-bottom: var(--lp-space-6);
}

.landing-saas footer .footer-social-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    transition: color 0.15s ease;
}

.landing-saas footer .footer-social-links a:hover {
    color: white;
}

.landing-saas footer .footer-contact {
    margin-top: var(--lp-space-4);
}

.landing-saas footer .footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-bottom: var(--lp-space-2);
}

.landing-saas footer .footer-contact strong {
    color: white;
}

.landing-saas footer .footer-contact a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.landing-saas footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--lp-space-8);
    margin-top: var(--lp-space-8);
    text-align: center;
}

.landing-saas footer .footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin: 0;
}

/* ============================================
   WHATSAPP FLOAT BUTTON
   ============================================ */

.landing-saas .whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.15s ease;
    text-decoration: none;
}

.landing-saas .whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

.landing-saas .whatsapp-float i {
    color: white;
    font-size: 32px;
}

/* ============================================
   DEMO IMAGE INTERNAL
   ============================================ */

.landing-saas .demo-image-internal {
    background: var(--lp-gray-900);
    padding: var(--lp-space-12);
    border-radius: var(--lp-radius-xl);
    color: white;
    text-align: center;
}

.landing-saas .demo-image-internal i {
    font-size: 64px;
    opacity: 0.5;
}

.landing-saas .demo-image-internal p {
    margin-top: var(--lp-space-4);
    opacity: 0.7;
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */

/* ============================================
   NAVBAR BRAND IMAGE
   ============================================ */

.landing-saas .navbar-brand img {
    display: inline-block;
}

/* ============================================
   HERO DEMO IMAGE
   ============================================ */

.landing-saas .hero-section .demo-image {
    background: white;
    border: 1px solid var(--lp-gray-200);
    border-radius: var(--lp-radius-xl);
    padding: var(--lp-space-8);
}

/* Hero Visual Container - Design Moderno e Atraente */
.landing-saas .hero-visual-container {
    position: relative;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-saas .hero-visual-card {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 100%;
    min-height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: var(--lp-radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--lp-space-8);
}

.landing-saas .hero-visual-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.landing-saas .hero-visual-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    width: 100%;
}

.landing-saas .hero-visual-icon {
    font-size: 80px;
    margin-bottom: var(--lp-space-6);
    animation: float 3s ease-in-out infinite;
}

.landing-saas .hero-visual-text h3 {
    font-size: 2rem;
    font-weight: var(--lp-font-weight-bold);
    margin-bottom: var(--lp-space-2);
    color: white;
}

.landing-saas .hero-visual-subtitle {
    font-size: var(--ds-font-size-body, 1rem);
    line-height: var(--ds-line-height-body, 1.6);
    color: #e9e9e9;
    margin-bottom: var(--lp-space-6);
}

.landing-saas .hero-visual-features {
    display: flex;
    flex-direction: column;
    gap: var(--lp-space-4);
    margin-top: var(--lp-space-6);
}

.landing-saas .hero-visual-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--lp-space-3);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: var(--lp-space-4) var(--lp-space-6);
    border-radius: var(--lp-radius-md);
    font-size: 1rem;
    font-weight: var(--lp-font-weight-medium);
    transition: transform 0.3s ease, background 0.3s ease;
}

.landing-saas .hero-visual-feature:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
}

.landing-saas .hero-visual-feature i {
    font-size: 1.5rem;
}

.landing-saas .hero-visual-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.landing-saas .hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: pulse 4s ease-in-out infinite;
}

.landing-saas .hero-shape-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    left: -50px;
    animation-delay: 0s;
}

.landing-saas .hero-shape-2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    right: -30px;
    animation-delay: 1s;
}

.landing-saas .hero-shape-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: 20%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
}

@media (max-width: 991.98px) {
    .landing-saas .hero-visual-container {
        min-height: 300px;
        margin-top: var(--lp-space-8);
    }
    
    .landing-saas .hero-visual-card {
        min-height: 300px;
    }
    
    .landing-saas .hero-visual-icon {
        font-size: 60px;
    }
    
    .landing-saas .hero-visual-text h3 {
        font-size: 1.5rem;
    }
    
    .landing-saas .hero-visual-subtitle {
        font-size: 1rem;
    }
    
    .landing-saas .hero-shape-1 {
        width: 150px;
        height: 150px;
    }
    
    .landing-saas .hero-shape-2 {
        width: 100px;
        height: 100px;
    }
    
    .landing-saas .hero-shape-3 {
        width: 70px;
        height: 70px;
    }
}

/* ============================================
   PRICING CARD ELEMENTS
   ============================================ */

.landing-saas .pricing-card-premium {
    position: relative;
}

.landing-saas .pricing-card-premium h3 {
    font-size: 1.5rem;
    font-weight: var(--ds-font-weight-bold);
    color: var(--ds-text-primary);
    margin-bottom: var(--ds-space-2);
}

.landing-saas .pricing-card-premium .pricing-description {
    color: var(--ds-text-secondary);
    font-size: 0.9375rem;
    margin-bottom: var(--ds-space-6);
}

.landing-saas .pricing-card-premium .pricing-amount {
    font-size: 3rem;
    font-weight: var(--ds-font-weight-bold);
    color: var(--ds-text-primary);
    line-height: 1;
    margin-bottom: var(--ds-space-1);
}

.landing-saas .pricing-card-premium .pricing-period {
    color: var(--ds-text-secondary);
    font-size: 1rem;
    margin-bottom: var(--ds-space-8);
}

.landing-saas .pricing-card-premium .pricing-savings {
    color: var(--ds-green);
    font-size: 0.875rem;
    margin-bottom: var(--ds-space-8);
    font-weight: var(--ds-font-weight-medium);
}

.landing-saas .pricing-card-premium .pricing-savings i {
    margin-right: var(--ds-space-1);
}

.landing-saas .pricing-card-premium .btn-pricing {
    width: 100%;
    background: var(--ds-primary);
    color: white;
    font-weight: var(--ds-font-weight-semibold);
    padding: var(--ds-space-4);
    border-radius: var(--ds-radius-md);
    border: none;
    font-size: 1rem;
    margin-bottom: var(--ds-space-4);
    text-decoration: none;
    display: block;
    text-align: center;
    transition: all var(--ds-transition-base);
}

.landing-saas .pricing-card-premium .btn-pricing:hover {
    background: var(--ds-primary-dark);
    transform: translateY(-1px);
}

.landing-saas .pricing-card-premium .pricing-trial {
    text-align: center;
    color: var(--ds-text-secondary);
    font-size: 0.875rem;
    margin: 0;
}

.landing-saas .pricing-card-premium .pricing-trial i {
    margin-right: var(--ds-space-1);
}

.landing-saas .pricing-empty {
    text-align: center;
    padding: var(--lp-space-12);
}

.landing-saas .pricing-empty p {
    color: var(--lp-gray-600);
    font-size: 1.125rem;
}

.landing-saas .pricing-empty .btn-hero-primary {
    display: inline-block;
    margin-top: var(--lp-space-4);
}

/* ============================================
   FAQ ACCORDION STYLING
   ============================================ */

.landing-saas .accordion-item {
    background: white;
    border: 2px solid var(--ds-gray-200);
    border-radius: var(--ds-radius-lg);
    padding: var(--ds-space-6);
    margin-bottom: var(--ds-space-4);
    transition: all var(--ds-transition-base);
}

.landing-saas .accordion-item:hover {
    border-color: var(--ds-primary);
}

.landing-saas .accordion-button {
    background: none;
    border: none;
    color: var(--ds-text-primary);
    font-weight: var(--ds-font-weight-semibold);
    font-size: 1.125rem;
    padding: 0;
    width: 100%;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.landing-saas .accordion-button .bi-chevron-down {
    color: var(--ds-primary);
    transition: transform var(--ds-transition-base);
}

.landing-saas .accordion-button:not(.collapsed) .bi-chevron-down {
    transform: rotate(180deg);
}

.landing-saas .accordion-body {
    padding-top: var(--ds-space-4);
    color: var(--ds-text-secondary);
    line-height: 1.7;
}

/* ============================================
   RESPONSIVIDADE COMPLETA
   ============================================ */

@media (max-width: 992px) {
    .landing-saas .use-cases-grid,
    .landing-saas .steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .landing-saas .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .landing-saas .hero-content .lead {
        font-size: 1.125rem;
    }
    
    .landing-saas .section-header h2 {
        font-size: 2rem;
    }
    
    .landing-saas .hero-section {
        padding: var(--lp-space-16) 0 var(--lp-space-12);
    }
    
    
    .landing-saas .social-proof-logos {
        gap: var(--lp-space-6);
    }
    
    .landing-saas .logo-placeholder {
        min-width: 120px;
        padding: var(--lp-space-4);
    }
    
    .landing-saas .benefits-section,
    .landing-saas .demo-section,
    .landing-saas .testimonials-section,
    .landing-saas .pricing-section,
    .landing-saas .faq-section,
    .landing-saas .features-section,
    .landing-saas .use-cases-section,
    .landing-saas .how-it-works-section,
    .landing-saas .cta-final-section {
        padding: var(--lp-space-16) 0;
    }
    
    .landing-saas .benefit-grid,
    .landing-saas .features-grid {
        grid-template-columns: 1fr;
    }
    
    .landing-saas .use-cases-grid,
    .landing-saas .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .landing-saas .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .landing-saas .pricing-info-grid {
        grid-template-columns: 1fr;
        gap: var(--lp-space-3);
    }
    
    .landing-saas .cta-guarantees {
        grid-template-columns: 1fr;
        gap: var(--lp-space-4);
    }
    
    .landing-saas .cta-final-buttons {
        flex-direction: column;
    }
    
    .landing-saas .cta-final-buttons .btn-hero-primary,
    .landing-saas .cta-final-buttons .btn-hero-secondary {
        width: 100%;
    }
    
    .landing-saas footer .row > div {
        margin-bottom: var(--lp-space-6);
    }
    
    .landing-saas .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 56px;
        height: 56px;
    }
    
    .landing-saas .whatsapp-float i {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .landing-saas .hero-content h1 {
        font-size: 2rem;
    }
    
    .landing-saas .section-header h2 {
        font-size: 1.75rem;
    }
    
    .landing-saas .benefit-card,
    .landing-saas .feature-card,
    .landing-saas .use-case-card {
        padding: var(--lp-space-6);
    }
    
    .landing-saas .feature-icon {
        width: 56px;
        height: 56px;
        font-size: 28px;
    }
    
    .landing-saas .step-icon {
        width: 70px;
        height: 70px;
    }
    
    .landing-saas .step-icon i {
        font-size: 35px;
    }
    
    .landing-saas .pricing-card-premium .pricing-amount {
        font-size: 2.5rem;
    }
}

/* ============================================
   ANIMAÇÕES DE ENTRADA
   ============================================ */

.landing-saas .fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 600ms ease-out, transform 600ms ease-out;
}

.landing-saas .fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* SVG Dividers */
.svg-divider-container {
    padding: 0;
    margin: 0;
}

.svg-divider-container--blue {
    background: var(--ds-bg-blue);
}

.svg-divider-container--white {
    background: white;
}

.svg-divider {
    display: block;
    width: 100%;
    height: auto;
}

/* FAQ Container */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Accordion Items - Override Bootstrap defaults */
.accordion-item-custom {
    background: white;
    border: 2px solid var(--ds-gray-200);
    border-radius: var(--ds-radius-lg);
    padding: var(--ds-space-6);
    margin-bottom: var(--ds-space-4);
    transition: all var(--ds-transition-base);
}

.landing-saas .accordion-button-custom {
    background: none;
    border: none;
    color: var(--ds-text-primary);
    font-weight: var(--ds-font-weight-semibold);
    font-size: 1.125rem;
    padding: 0;
    width: 100%;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.landing-saas .accordion-button-custom::after {
    /* Bootstrap já adiciona a seta automaticamente */
    flex-shrink: 0;
    margin-left: auto;
}

.accordion-body-custom {
    padding-top: var(--ds-space-4);
    color: var(--ds-text-secondary);
    line-height: 1.7;
}

/* CTA Final Section */
.cta-final-section {
    padding: var(--ds-space-24) 0;
    background: var(--ds-bg-purple);
    border-top: 1px solid var(--ds-gray-200);
}

.cta-final-actions {
    text-align: center;
    margin-top: var(--ds-space-12);
}

.cta-final-buttons {
    display: flex;
    gap: var(--ds-space-4);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--ds-space-12);
}

.cta-final-buttons .btn-hero-primary,
.cta-final-buttons .btn-hero-secondary {
    font-size: 1.125rem;
    padding: var(--ds-space-5) var(--ds-space-10);
}

.landing-saas .cta-guarantees {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--ds-space-6);
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 767.98px) {
    .landing-saas .cta-guarantees {
        grid-template-columns: 1fr;
        gap: var(--ds-space-4);
    }
}

.cta-guarantee-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--ds-space-2);
}

.cta-guarantee-item i {
    color: var(--ds-green);
    font-size: 1.25rem;
}

.cta-guarantee-item span {
    color: var(--ds-text-primary);
    font-size: 0.9375rem;
    font-weight: var(--ds-font-weight-medium);
}

/* Footer */
footer.footer-landing {
    background: var(--ds-purple);
    color: white;
    padding: var(--ds-space-16) 0 var(--ds-space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-heading {
    font-size: 0.875rem;
    font-weight: var(--ds-font-weight-semibold);
    color: white;
    margin-bottom: var(--ds-space-4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-logo {
    margin-bottom: var(--ds-space-4);
    filter: brightness(0) invert(1);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-top: var(--ds-space-4);
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: var(--ds-space-2);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color var(--ds-transition-base);
}

.footer-links a:hover {
    color: white;
}

