/* QORVO Enhanced Styles - Elementos Visuais e Interativos */

/* SESSÃO 1: PROPOSIÇÃO DE VALOR E CONVERSÃO */
.hero {
    padding: 100px 0;
    background: white;
}

.hero-header {
    text-align: left;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-header .technology-description {
    margin-top: 32px;
    display: flex;
    justify-content: flex-start;
    width: 100%;
}

.hero-header .consolidation-seal {
    margin-top: 24px;
    max-width: 500px;
    padding: 16px 20px;
    font-size: 0.9rem;
    align-self: flex-start;
    margin-left: 0;
    text-align: left;
}

.hero-header .consolidation-seal .seal-icon {
    font-size: 1.1rem;
}

.hero-header .consolidation-seal .seal-text {
    font-size: 0.9rem;
    text-align: left;
}

.hero-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.hero-dashboard-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 24px;
}

.hero-header .hero-actions {
    align-self: flex-start;
    margin-left: 0;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #1e40af 0%, #0ea5e9 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 32px;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
    animation: pulse-glow 2s infinite;
    align-self: flex-start;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3); }
    50% { box-shadow: 0 6px 25px rgba(30, 64, 175, 0.5); }
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
    text-align: left;
    max-width: 100%;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #1e40af 0%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: text-shine 3s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 28px;
    max-width: 100%;
    text-align: left;
}

@keyframes text-shine {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Typewriter Effect */
.typewriter-container {
    position: relative;
    margin-bottom: 32px;
    text-align: left;
    display: flex;
    justify-content: flex-start;
}

.typewriter-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #475569;
    font-weight: 500;
    max-width: 100%;
    text-align: left;
    display: inline-block;
}

.cursor {
    font-size: 1.2rem;
    color: #1e40af;
    animation: blink 1s infinite;
    font-weight: 300;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Consolidation Seal */
.consolidation-seal {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 20px 24px;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.consolidation-seal::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 64, 175, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.seal-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.seal-icon i {
    color: white;
    font-size: 18px;
}

.seal-text strong {
    color: #0f172a;
    font-weight: 600;
}

.highlight-text {
    color: #1e40af;
    font-weight: 700;
}

/* Hero CTA Buttons */
.hero-cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-actions .btn-primary,
.hero-actions .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.hero-actions .btn-primary {
    background: linear-gradient(135deg, #1e40af 0%, #0ea5e9 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.hero-actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.4);
}

.hero-actions .btn-secondary {
    background: transparent;
    color: #1e40af;
    border-color: #1e40af;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hero-actions .btn-secondary:hover {
    background: #1e40af;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

/* Dashboard Showcase */
.dashboard-showcase {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0;
}

.dashboard-frame {
    position: relative;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transform: perspective(1000px) rotateY(-3deg) rotateX(3deg);
    transition: all 0.4s ease;
}

.dashboard-frame:hover {
    transform: perspective(1000px) rotateY(-1deg) rotateX(1deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

/* Coded Dashboard Styles */
.coded-dashboard {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    min-height: 400px;
    font-family: 'Inter', sans-serif;
}

.dashboard-header {
    background: linear-gradient(135deg, #1e40af 0%, #0ea5e9 100%);
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.dashboard-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 18px;
}

.dashboard-logo {
    height: 32px;
    width: auto;
}

.dashboard-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.dashboard-content {
    padding: 24px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.metric-card {
    background: #f8fafc;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.metric-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1e40af 0%, #0ea5e9 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.metric-info {
    display: flex;
    flex-direction: column;
}

.metric-number {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1;
    margin-bottom: 2px;
}

.metric-label {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

.dashboard-charts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.chart-container {
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.chart-container h4 {
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 16px;
    text-align: center;
}

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

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

.funnel-stage span:first-child {
    min-width: 70px;
    font-weight: 600;
    color: #374151;
}

.funnel-bar {
    flex: 1;
    height: 24px;
    border-radius: 12px;
    position: relative;
    transition: all 0.6s ease;
}

.funnel-count {
    min-width: 50px;
    text-align: right;
    font-weight: 600;
    color: #1e40af;
}

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

.performance-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
}

.performance-label {
    min-width: 70px;
    font-weight: 600;
    color: #374151;
}

.performance-bar {
    flex: 1;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}

.performance-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.8s ease;
}

.performance-value {
    min-width: 35px;
    text-align: right;
    font-weight: 600;
    color: #1e40af;
}

.dashboard-overlay {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 10;
}

.overlay-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 12px 20px;
    border-radius: 25px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    font-size: 13px;
    font-weight: 600;
    color: #0f172a;
}

.overlay-badge i {
    color: #1e40af;
    font-size: 14px;
}

/* Floating Stats */
.floating-stats {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    background: white;
    padding: 20px 24px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.stat-bubble {
    text-align: center;
    min-width: 80px;
}

.stat-bubble .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-bubble .stat-label {
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* SESSÃO 2: AUTORIDADE E PROVA SOCIAL */
.social-proof {
    padding: 60px 0;
    background: #f8fafc;
}

.social-proof-header {
    text-align: center;
    margin-bottom: 40px;
}

.social-proof-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0;
}

.stats-minimal {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.stat-minimal {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-minimal:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-minimal .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #1e40af;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-minimal .stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

/* Animated Counters */
.counter {
    font-size: 3rem;
    font-weight: 700;
    color: #1e40af;
    line-height: 1;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card-large {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #1e40af 0%, #0ea5e9 100%);
}

.stat-card-large:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.stat-icon-large {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e40af 0%, #0ea5e9 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.stat-icon-large i {
    font-size: 24px;
    color: white;
}

.stat-content-large h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 16px;
}

.stat-description {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
}

/* Achievement Showcase */
.achievement-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.achievement-main {
    background: white;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 30px;
}

.achievement-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e40af 0%, #0ea5e9 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.achievement-icon i {
    font-size: 32px;
    color: white;
}

.achievement-number {
    font-size: 4rem;
    font-weight: 700;
    color: #1e40af;
    line-height: 1;
    margin-bottom: 8px;
}

.achievement-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 12px;
}

.achievement-description {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
}

.growth-indicator {
    background: white;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.growth-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.growth-icon i {
    font-size: 24px;
    color: white;
}

.growth-number {
    font-size: 3rem;
    font-weight: 700;
    color: #10b981;
    line-height: 1;
    margin-bottom: 8px;
}

.growth-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 8px;
}

.growth-description {
    font-size: 0.9rem;
    color: #64748b;
}

/* Clients Carousel */
.clients-carousel {
    text-align: center;
}

.clients-carousel h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 30px;
}

.clients-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
}

.logo-item {
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.logo-item:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

.logo-item img {
    height: 60px;
    width: auto;
    border-radius: 8px;
}

/* SESSÃO 3: DIÁLOGO PROFISSIONAL COM COMPARAÇÃO VISUAL */
.professional-dialogue {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.professional-dialogue::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.dialogue-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

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

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #1e40af 0%, #0ea5e9 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.dialogue-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
}

.header-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    margin: 0;
}

.comparison-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 60px;
}

.side-header {
    text-align: center;
    margin-bottom: 30px;
}

.side-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.side-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

.problem-icon {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
}

.solution-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.side-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.side-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.problem-badge {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.solution-badge {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.problems-grid {
    display: grid;
    gap: 20px;
}

.problem-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid #ef4444;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(220, 38, 38, 0.05) 100%);
    transition: width 0.3s ease;
}

.problem-card:hover::before {
    width: 100%;
}

.problem-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.problem-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.problem-indicator i {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.cost-badge, .loss-badge, .limit-badge, .blind-badge {
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.cost-badge {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.loss-badge {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.limit-badge {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.blind-badge {
    background: rgba(107, 114, 128, 0.1);
    color: #6b7280;
}

.problem-card p {
    font-size: 1rem;
    color: #374151;
    line-height: 1.5;
    margin: 0;
}

.vs-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.vs-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e40af 0%, #0ea5e9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
    position: relative;
    z-index: 2;
}

.divider-line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 200px;
    background: linear-gradient(to bottom, transparent 0%, #1e40af 50%, transparent 100%);
    z-index: 1;
}

.solution-showcase {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(16, 185, 129, 0.1);
    position: relative;
    overflow: hidden;
}

.solution-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.02) 0%, rgba(5, 150, 105, 0.02) 100%);
    z-index: 1;
}

.solution-main {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.solution-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.solution-main h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.solution-main p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.benefits-list {
    display: grid;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(16, 185, 129, 0.05);
    border-radius: 10px;
    border-left: 3px solid #10b981;
}

.benefit-item i {
    color: #10b981;
    font-size: 1rem;
}

.benefit-item span {
    font-size: 0.95rem;
    color: #374151;
    font-weight: 500;
}

.conclusion-section {
    margin-top: 60px;
}

.conclusion-card {
    background: linear-gradient(135deg, #1e40af 0%, #0ea5e9 100%);
    padding: 40px;
    border-radius: 25px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(30, 64, 175, 0.3);
}

.conclusion-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.conclusion-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 2;
}

.conclusion-content {
    position: relative;
    z-index: 2;
}

.conclusion-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.conclusion-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.conclusion-content strong {
    color: white;
    font-weight: 700;
}

.btn-conclusion {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 15px 30px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-conclusion:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* SESSÃO 4: PILARES TECNOLÓGICOS AVANÇADOS */
.tech-pillars-advanced {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.tech-pillars-advanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="tech-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23tech-grid)"/></svg>');
    opacity: 0.4;
}

.section-header-advanced {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-header-advanced .header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #1e40af 0%, #0ea5e9 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
}

.section-header-advanced h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.header-subtitle {
    font-size: 1.3rem;
    color: #64748b;
    margin: 0;
    font-weight: 400;
}

.pillars-advanced-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.pillar-advanced-card {
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.pillar-advanced-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.5) 0%, rgba(241, 245, 249, 0.5) 100%);
    z-index: 1;
}

.pillar-advanced-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
}

.pillar-advanced-card > * {
    position: relative;
    z-index: 2;
}

.pillar-header-advanced {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 35px;
}

.pillar-icon-advanced {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: relative;
    flex-shrink: 0;
}

.pillar-icon-advanced .icon-pulse {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    animation: pulse-ring 2s infinite;
}

.ai-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.bi-icon {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
}

.automation-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.multichannel-icon {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.3);
}

.pillar-title-section {
    flex: 1;
}

.pillar-title-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.pillar-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.ai-badge {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.bi-badge {
    background: rgba(14, 165, 233, 0.1);
    color: #0ea5e9;
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.automation-badge {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.multichannel-badge {
    background: rgba(236, 72, 153, 0.1);
    color: #ec4899;
    border: 1px solid rgba(236, 72, 153, 0.2);
}

.pillar-visual-advanced {
    margin-bottom: 30px;
}

/* IA COMMAND CENTER */
.ai-command-center {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid rgba(139, 92, 246, 0.1);
}

.ai-agents-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.ai-agent {
    text-align: center;
    position: relative;
}

.agent-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.agent-status {
    position: absolute;
    top: -5px;
    right: calc(50% - 35px);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 3px solid white;
}

.agent-status.online {
    background: #10b981;
    animation: pulse-dot 2s infinite;
}

.agent-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
}

.ai-conversation-demo {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.conversation-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e7eb;
}

.conversation-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.conversation-info {
    flex: 1;
}

.conversation-name {
    font-weight: 600;
    color: #111827;
    font-size: 0.95rem;
}

.conversation-status {
    font-size: 0.8rem;
    color: #6b7280;
}

.conversation-status.typing {
    animation: typing 1.5s infinite;
}

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

.message {
    padding: 12px 16px;
    border-radius: 15px;
    font-size: 0.9rem;
    max-width: 80%;
}

.message.customer {
    background: #e5e7eb;
    color: #374151;
    align-self: flex-start;
}

.message.ai {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    align-self: flex-end;
}

.ai-analysis-overlay {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    padding: 15px;
    background: rgba(139, 92, 246, 0.05);
    border-radius: 10px;
}

.analysis-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #6b7280;
}

.analysis-item i {
    color: #8b5cf6;
}

/* BI DASHBOARD AVANÇADO */
.bi-dashboard-advanced {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid rgba(14, 165, 233, 0.1);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.dashboard-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #111827;
    font-size: 1.1rem;
}

.dashboard-title i {
    color: #0ea5e9;
}

.dashboard-time {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #6b7280;
}

.dashboard-time i {
    color: #10b981;
    animation: pulse-dot 2s infinite;
}

.metrics-grid-advanced {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.metric-card-advanced {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.metric-card-advanced:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.metric-card-advanced.total {
    border-left-color: #1e40af;
}

.metric-card-advanced.wins {
    border-left-color: #10b981;
}

.metric-card-advanced.losses {
    border-left-color: #ef4444;
}

.metric-card-advanced.pending {
    border-left-color: #f59e0b;
}

.metric-card-advanced .metric-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: white;
}

.metric-card-advanced.total .metric-icon {
    background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
}

.metric-card-advanced.wins .metric-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.metric-card-advanced.losses .metric-icon {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.metric-card-advanced.pending .metric-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    display: block;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 0.8rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    display: block;
}

.metric-trend {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    font-weight: 600;
}

.metric-trend.positive {
    color: #10b981;
}

.metric-trend.negative {
    color: #ef4444;
}

.metric-trend.neutral {
    color: #6b7280;
}

.funnel-advanced {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.funnel-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 20px;
    font-size: 1rem;
}

.funnel-title i {
    color: #0ea5e9;
}

.funnel-stages {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.stage-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 200px;
    flex-shrink: 0;
}

.stage-name {
    font-size: 0.9rem;
    color: #374151;
    font-weight: 500;
}

.stage-count {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 600;
}

.stage-bar {
    flex: 1;
    height: 30px;
    background: #f3f4f6;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.stage-fill {
    height: 100%;
    width: var(--width);
    background: var(--color);
    border-radius: 15px;
    animation: fill-bar 2s ease-out;
}

/* AUTOMAÇÃO AVANÇADA */
.automation-workspace {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid rgba(16, 185, 129, 0.1);
}

.workflow-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.workflow-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #111827;
    font-size: 1.1rem;
}

.workflow-title i {
    color: #10b981;
}

.workflow-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #6b7280;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.status-indicator.active {
    background: #10b981;
    animation: pulse-dot 2s infinite;
}

.automation-flow-advanced {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    overflow-x: auto;
    padding: 20px 0;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 120px;
    position: relative;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.step-content {
    text-align: center;
}

.step-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #111827;
    display: block;
    margin-bottom: 3px;
}

.step-desc {
    font-size: 0.8rem;
    color: #6b7280;
}

.step-arrow {
    position: absolute;
    right: -25px;
    top: 25px;
    color: #10b981;
    font-size: 1rem;
}

.automation-kanban {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.kanban-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 20px;
    font-size: 1rem;
}

.kanban-header i {
    color: #10b981;
}

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

.kanban-column-advanced {
    background: #f9fafb;
    border-radius: 12px;
    padding: 15px;
}

.column-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e7eb;
}

.column-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
}

.column-count {
    font-size: 0.8rem;
    color: #6b7280;
    background: #e5e7eb;
    padding: 2px 8px;
    border-radius: 10px;
}

.kanban-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.kanban-card-advanced {
    background: white;
    border-radius: 10px;
    padding: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-left: 3px solid;
    transition: all 0.3s ease;
}

.kanban-card-advanced:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.kanban-card-advanced.new {
    border-left-color: #1e40af;
}

.kanban-card-advanced.qualified {
    border-left-color: #0ea5e9;
}

.kanban-card-advanced.proposal {
    border-left-color: #f59e0b;
}

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

.card-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #111827;
}

.card-priority {
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
}

.card-priority.high {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.card-priority.medium {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: #111827;
}

.card-tags {
    display: flex;
    gap: 5px;
}

.tag {
    font-size: 0.7rem;
    padding: 2px 6px;
    background: #f3f4f6;
    color: #6b7280;
    border-radius: 6px;
}

.pillar-description {
    margin-top: 25px;
}

.pillar-description p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

.pillar-description strong {
    color: #111827;
    font-weight: 600;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes typing {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0.3;
    }
}

@keyframes fill-bar {
    0% {
        width: 0;
    }
    100% {
        width: var(--width);
    }
}

/* MULTI-CANAIS INTEGRADOS */
.multichannel-workspace {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid rgba(236, 72, 153, 0.1);
}

.channels-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.channels-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #111827;
    font-size: 1.1rem;
}

.channels-title i {
    color: #ec4899;
}

.channels-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #6b7280;
}

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

.channel-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.channel-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.channel-card.whatsapp {
    border-left-color: #25d366;
}

.channel-card.instagram {
    border-left-color: #e4405f;
}

.channel-card.facebook {
    border-left-color: #0084ff;
}

.channel-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f3f4f6;
}

.channel-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.channel-card.whatsapp .channel-icon {
    background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
}

.channel-card.instagram .channel-icon {
    background: linear-gradient(135deg, #e4405f 0%, #c13584 100%);
}

.channel-card.facebook .channel-icon {
    background: linear-gradient(135deg, #0084ff 0%, #0066cc 100%);
}

.channel-info {
    flex: 1;
}

.channel-name {
    font-weight: 600;
    color: #111827;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 3px;
}

.channel-status {
    font-size: 0.8rem;
    color: #10b981;
    font-weight: 500;
}

.channel-metrics {
    text-align: right;
}

.metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #111827;
    display: block;
    margin-bottom: 2px;
}

.metric-label {
    font-size: 0.7rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.channel-conversation {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.conversation-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.message-indicator {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: white;
    flex-shrink: 0;
}

.message-indicator.received {
    background: #e5e7eb;
    color: #6b7280;
}

.message-indicator.sent {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

.message-content {
    flex: 1;
}

.message-text {
    font-size: 0.85rem;
    color: #374151;
    line-height: 1.4;
    display: block;
    margin-bottom: 3px;
}

.message-time {
    font-size: 0.7rem;
    color: #9ca3af;
}

.unified-dashboard {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e7eb;
}

.dashboard-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #111827;
    font-size: 1rem;
}

.dashboard-title i {
    color: #ec4899;
}

.dashboard-time {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #6b7280;
}

.dashboard-time i {
    color: #10b981;
    animation: pulse-dot 2s infinite;
}

.unified-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.unified-metric {
    text-align: center;
    padding: 15px 10px;
    background: #f9fafb;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.unified-metric:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
}

.unified-metric .metric-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: white;
    font-size: 1rem;
}

.unified-metric .metric-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111827;
    display: block;
    margin-bottom: 5px;
}

.unified-metric .metric-label {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.conversion-flow {
    margin-top: 20px;
}

.flow-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.flow-title i {
    color: #ec4899;
}

.flow-stages {
    display: flex;
    align-items: center;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 0;
}

.flow-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 100px;
    text-align: center;
}

.stage-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.stage-label {
    font-size: 0.8rem;
    color: #374151;
    font-weight: 500;
}

.flow-arrow {
    color: #ec4899;
    font-size: 1rem;
    flex-shrink: 0;
}

/* SESSÃO 5: QORVO SE ADAPTA AO SEU NEGÓCIO */
.business-adaptation {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.business-adaptation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="business-grid" width="25" height="25" patternUnits="userSpaceOnUse"><path d="M 25 0 L 0 0 0 25" fill="none" stroke="%23f1f5f9" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23business-grid)"/></svg>');
    opacity: 0.6;
}

.adaptation-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.adaptation-header .header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #1e40af 0%, #0ea5e9 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
}

.adaptation-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.adaptation-subtitle {
    font-size: 1.3rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.business-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 60px 0;
    position: relative;
    z-index: 2;
}

.divider-line {
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #e2e8f0 50%, transparent 100%);
}

.divider-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e40af 0%, #0ea5e9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 30px;
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.3);
    animation: float 3s ease-in-out infinite;
}

.niches-section {
    position: relative;
    z-index: 2;
}

.niches-header {
    text-align: center;
    margin-bottom: 50px;
}

.niches-header h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}

.niches-header p {
    font-size: 1.1rem;
    color: #64748b;
    margin: 0;
}

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

.niche-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
}

.niche-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.8) 0%, rgba(241, 245, 249, 0.8) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.niche-card:hover::before {
    opacity: 1;
}

.niche-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.niche-card > * {
    position: relative;
    z-index: 2;
}

.niche-visual {
    padding: 30px 30px 20px;
    text-align: center;
    position: relative;
}

.niche-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.niche-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    animation: pulse-ring 2s infinite;
}

.niche-card.infoprodutores .niche-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.niche-card.ecommerce .niche-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.niche-card.agencias .niche-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.niche-card.assinaturas .niche-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.niche-card.software .niche-icon {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.3);
}

.niche-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: rgba(255, 255, 255, 0.9);
    color: #64748b;
    backdrop-filter: blur(10px);
}

.niche-content {
    padding: 0 30px 30px;
}

.niche-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
    text-align: center;
}

.niche-content p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: center;
}

.niche-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    background: rgba(248, 250, 252, 0.8);
    border-radius: 10px;
    border-left: 3px solid;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(241, 245, 249, 0.9);
    transform: translateX(5px);
}

.niche-card.infoprodutores .feature-item {
    border-left-color: #f59e0b;
}

.niche-card.ecommerce .feature-item {
    border-left-color: #10b981;
}

.niche-card.agencias .feature-item {
    border-left-color: #3b82f6;
}

.niche-card.assinaturas .feature-item {
    border-left-color: #8b5cf6;
}

.niche-card.software .feature-item {
    border-left-color: #ec4899;
}

.feature-item i {
    color: #64748b;
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

.feature-item span {
    font-size: 0.9rem;
    color: #374151;
    font-weight: 500;
}

.niche-cta {
    text-align: center;
}

.niche-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1e40af;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: 10px;
    background: rgba(30, 64, 175, 0.05);
    border: 1px solid rgba(30, 64, 175, 0.1);
    transition: all 0.3s ease;
}

.niche-link:hover {
    background: rgba(30, 64, 175, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.2);
}

.adaptation-cta {
    background: linear-gradient(135deg, #1e40af 0%, #0ea5e9 100%);
    border-radius: 25px;
    padding: 50px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(30, 64, 175, 0.3);
}

.adaptation-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 15px 30px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-primary-large:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: white;
    padding: 15px 30px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.btn-secondary-large:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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

/* SESSÃO 6: PERGUNTAS FREQUENTES */
.faq-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="faq-grid" width="30" height="30" patternUnits="userSpaceOnUse"><path d="M 30 0 L 0 0 0 30" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23faq-grid)"/></svg>');
    opacity: 0.4;
}

.faq-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.faq-header .header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.faq-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.faq-subtitle {
    font-size: 1.3rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.faq-container {
    position: relative;
    z-index: 2;
    margin-bottom: 80px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s ease;
    position: relative;
}

.faq-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.8) 0%, rgba(241, 245, 249, 0.8) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-card:hover::before {
    opacity: 1;
}

.faq-card > * {
    position: relative;
    z-index: 2;
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: rgba(248, 250, 252, 0.5);
}

.question-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.question-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    animation: pulse-ring 2s infinite;
}

.faq-card[data-faq="1"] .question-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.faq-card[data-faq="2"] .question-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.faq-card[data-faq="3"] .question-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.faq-card[data-faq="4"] .question-icon {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.3);
}

.question-content {
    flex: 1;
}

.question-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
    line-height: 1.4;
}

.question-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.faq-toggle {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #1e40af 0%, #0ea5e9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: rgba(248, 250, 252, 0.5);
}

.faq-card.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 30px;
}

.faq-card.active .faq-toggle {
    transform: rotate(45deg);
}

.answer-content {
    padding-top: 20px;
}

.answer-content p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
}

.answer-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    font-size: 0.85rem;
    color: #374151;
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-tag i {
    color: #8b5cf6;
    font-size: 0.9rem;
}

.faq-cta {
    background: linear-gradient(135deg, #1e40af 0%, #0ea5e9 100%);
    border-radius: 25px;
    padding: 60px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(30, 64, 175, 0.3);
}

.faq-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2rem;
    color: white;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-faq-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 18px 35px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-faq-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-faq-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: white;
    padding: 18px 35px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.btn-faq-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.final-message {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    margin-top: 30px;
}

.final-message p {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin: 0;
    line-height: 1.4;
}

.final-message strong {
    color: #fbbf24;
    font-weight: 700;
}

.problem-solution {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.problem-side,
.solution-side {
    background: #f8fafc;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #e2e8f0;
}

.problem-side {
    border-color: #ef4444;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.solution-side {
    border-color: #10b981;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.problem-header,
.solution-header {
    margin-bottom: 30px;
}

.problem-header h3,
.solution-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.problem-header h3 {
    color: #dc2626;
}

.solution-header h3 {
    color: #059669;
}

.problem-icon,
.solution-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.problem-icon {
    background: #ef4444;
    color: white;
}

.solution-icon {
    background: #10b981;
    color: white;
}

.problem-icon i,
.solution-icon i {
    font-size: 24px;
}

.tools-scattered {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.tool-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 12px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 500;
    color: #374151;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.tool-item i {
    font-size: 16px;
    color: #ef4444;
}

.unified-platform {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    margin-bottom: 20px;
}

.platform-center {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
}

.platform-center i {
    font-size: 24px;
    margin-bottom: 4px;
}

.problem-description,
.solution-description {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.problem-description {
    color: #dc2626;
}

.solution-description {
    color: #059669;
}

.vs-divider {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e40af 0%, #0ea5e9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.secondary-cta {
    text-align: center;
    margin-top: 60px;
}

.secondary-cta .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #1e40af;
    background: transparent;
    color: #1e40af;
}

.secondary-cta .btn-secondary:hover {
    background: #1e40af;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

/* SESSÃO 4: PILARES TECNOLÓGICOS */
.tech-pillars {
    padding: 100px 0;
    background: #f8fafc;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.pillar-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #1e40af 0%, #0ea5e9 100%);
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pillar-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.pillar-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e40af 0%, #0ea5e9 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pillar-icon i {
    font-size: 24px;
    color: white;
}

.pillar-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
}

.pillar-visual {
    margin-bottom: 20px;
}

/* AI Analysis Visual */
.ai-analysis {
    background: #f8fafc;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.conversation-bubbles {
    margin-bottom: 20px;
}

.bubble {
    padding: 12px 16px;
    border-radius: 18px;
    margin-bottom: 10px;
    max-width: 80%;
    font-size: 14px;
}

.bubble.customer {
    background: #e2e8f0;
    color: #374151;
    margin-left: 0;
}

.bubble.ai {
    background: linear-gradient(135deg, #1e40af 0%, #0ea5e9 100%);
    color: white;
    margin-left: auto;
    margin-right: 0;
}

.ai-metrics {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.metric {
    text-align: center;
    background: white;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    min-width: 80px;
}

.metric-label {
    display: block;
    font-size: 11px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.metric-value {
    display: block;
    font-size: 14px;
    font-weight: 700;
}

.metric-value.positive {
    color: #10b981;
}

.metric-value.high {
    color: #ef4444;
}

/* BI Dashboard Visual */
.bi-dashboard {
    background: #f8fafc;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.dashboard-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.metric-card {
    background: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.metric-card .metric-number {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 4px;
}

.metric-card .metric-label {
    font-size: 11px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.funnel-visual {
    background: white;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.funnel-stage {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.funnel-stage span {
    font-size: 12px;
    font-weight: 600;
    color: #374151;
    min-width: 80px;
}

.funnel-bar {
    height: 20px;
    background: linear-gradient(135deg, #1e40af 0%, #0ea5e9 100%);
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* Automation Flow Visual */
.automation-flow {
    background: #f8fafc;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.kanban-board {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.kanban-column {
    background: white;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.kanban-column h4 {
    font-size: 12px;
    font-weight: 600;
    color: #374151;
    text-align: center;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.kanban-card {
    background: #f1f5f9;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
    color: #475569;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.automation-steps {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    color: #374151;
}

.step i {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #1e40af 0%, #0ea5e9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}

/* SESSÃO 5: VANTAGENS EXCLUSIVAS */
.exclusive-advantages {
    padding: 100px 0;
    background: white;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.advantage-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.advantage-card:nth-child(1)::before {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.advantage-card:nth-child(2)::before {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.advantage-card:nth-child(3)::before {
    background: linear-gradient(135deg, #1e40af 0%, #0ea5e9 100%);
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.advantage-icon.warning {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.advantage-icon.economy {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.advantage-icon.mobile {
    background: linear-gradient(135deg, #1e40af 0%, #0ea5e9 100%);
}

.advantage-icon i {
    font-size: 32px;
    color: white;
}

.advantage-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 16px;
}

.advantage-card p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
}

/* SESSÃO 6: SUPORTE */
.support-section {
    padding: 100px 0;
    background: #f8fafc;
}

.support-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.support-item {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.support-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.support-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e40af 0%, #0ea5e9 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.support-icon i {
    font-size: 24px;
    color: white;
}

.support-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 16px;
}

.support-item p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
}

/* CTA Final */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e40af 0%, #0ea5e9 100%);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-buttons .btn-primary {
    background: white;
    color: #1e40af;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #1e40af;
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo .logo-icon {
    height: 32px;
    width: auto;
}

.footer-logo .logo-text {
    height: 24px;
    width: auto;
}

.footer-bottom {
    border-top: 1px solid #334155;
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #94a3b8;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
    
    .stats-minimal {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .dialogue-header h2 {
        font-size: 1.8rem;
    }
    
    .dialogue-intro p {
        font-size: 1.1rem;
    }
    
    .question-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 25px 20px;
    }
    
    .question-item p {
        font-size: 1rem;
    }
    
    .conclusion-highlight h3 {
        font-size: 1.5rem;
    }
    
    .conclusion-highlight p {
        font-size: 1.1rem;
    }
    
    .stats-minimal {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-minimal {
        padding: 15px;
    }
    
    .stat-minimal .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-minimal .stat-label {
        font-size: 0.85rem;
    }
    
    .social-proof-header h2 {
        font-size: 1.6rem;
    }
    
    .comparison-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .vs-divider {
        order: -1;
    }
    
    .vs-divider .divider-line {
        display: none;
    }
    
    .dialogue-header h2 {
        font-size: 2rem;
    }
    
    .side-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .solution-showcase {
        padding: 20px;
    }
    
    .conclusion-card {
        padding: 30px 20px;
    }
    
    .conclusion-content h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text-content {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
        text-align: left;
    }
    
    .hero-subtitle {
        text-align: left;
    }
    
    .hero-header .typewriter-text {
        text-align: left;
        font-size: 1.1rem;
    }
    
    .hero-header .typewriter-container {
        justify-content: flex-start;
    }
    
    .hero-header .consolidation-seal {
        max-width: 100%;
        padding: 12px 16px;
        font-size: 0.85rem;
    }
    
    .hero-header .consolidation-seal .seal-icon {
        font-size: 1rem;
    }
    
    .hero-header .consolidation-seal .seal-text {
        font-size: 0.85rem;
        text-align: left;
    }
    
    .social-proof {
        padding: 40px 0;
    }
    
    .social-proof-header {
        margin-bottom: 30px;
    }
    
    .social-proof-header h2 {
        font-size: 1.5rem;
    }
    
    .stats-minimal {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .stat-minimal {
        padding: 12px;
    }
    
    .stat-minimal .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-minimal .stat-label {
        font-size: 0.8rem;
    }
    
    .professional-dialogue {
        padding: 60px 0;
    }
    
    .dialogue-header h2 {
        font-size: 1.8rem;
    }
    
    .header-subtitle {
        font-size: 1rem;
    }
    
    .comparison-container {
        gap: 20px;
    }
    
    .vs-circle {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .problem-card {
        padding: 15px;
    }
    
    .problem-indicator i {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .solution-icon-large {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .solution-main h4 {
        font-size: 1.1rem;
    }
    
    .solution-main p {
        font-size: 0.9rem;
    }
    
    .conclusion-card {
        padding: 25px 15px;
    }
    
    .conclusion-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .conclusion-content h3 {
        font-size: 1.4rem;
    }
    
    .conclusion-content p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .btn-conclusion {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .tech-pillars-advanced {
        padding: 80px 0;
    }
    
    .section-header-advanced h2 {
        font-size: 2.2rem;
    }
    
    .ai-agents-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .metrics-grid-advanced {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .automation-flow-advanced {
        flex-direction: column;
        gap: 15px;
    }
    
    .step-arrow {
        display: none;
    }
    
    .kanban-columns {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .business-adaptation {
        padding: 60px 0;
    }
    
    .adaptation-header h2 {
        font-size: 1.8rem;
    }
    
    .adaptation-subtitle {
        font-size: 1rem;
    }
    
    .divider-line {
        width: 50px;
    }
    
    .divider-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin: 0 15px;
    }
    
    .niches-header h3 {
        font-size: 1.6rem;
    }
    
    .niches-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .niche-visual {
        padding: 20px 20px 15px;
    }
    
    .niche-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .niche-badge {
        top: 15px;
        right: 15px;
        padding: 4px 8px;
        font-size: 9px;
    }
    
    .niche-content {
        padding: 0 20px 20px;
    }
    
    .niche-content h4 {
        font-size: 1.1rem;
    }
    
    .niche-content p {
        font-size: 0.9rem;
    }
    
    .feature-item {
        padding: 8px 12px;
        gap: 10px;
    }
    
    .feature-item i {
        font-size: 0.9rem;
    }
    
    .feature-item span {
        font-size: 0.8rem;
    }
    
    .niche-link {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
    
    .adaptation-cta {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .cta-content h3 {
        font-size: 1.4rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .btn-primary-large, .btn-secondary-large {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .faq-section {
        padding: 80px 0;
    }
    
    .faq-header h2 {
        font-size: 2.2rem;
    }
    
    .faq-subtitle {
        font-size: 1.1rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .faq-question {
        padding: 25px;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .question-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .question-content h3 {
        font-size: 1.2rem;
    }
    
    .faq-toggle {
        align-self: center;
    }
    
    .faq-cta {
        padding: 50px 30px;
        border-radius: 20px;
    }
    
    .cta-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .cta-content h3 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-faq-primary, .btn-faq-secondary {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .channels-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .unified-metrics {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .channel-header {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .channel-icon {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .conversation-item {
        gap: 8px;
    }
    
    .message-indicator {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
    
    .message-text {
        font-size: 0.8rem;
    }
    
    .unified-metric .metric-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .unified-metric .metric-value {
        font-size: 1.1rem;
    }
    
    .flow-stage {
        min-width: 80px;
    }
    
    .stage-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .stage-label {
        font-size: 0.75rem;
    }
    
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-header h2 {
        font-size: 1.8rem;
    }
    
    .faq-subtitle {
        font-size: 1rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-question {
        padding: 20px;
        gap: 15px;
    }
    
    .question-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .question-content h3 {
        font-size: 1.1rem;
    }
    
    .faq-toggle {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .answer-content {
        padding-top: 15px;
    }
    
    .answer-content p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .feature-tag {
        padding: 6px 12px;
        font-size: 0.8rem;
        gap: 6px;
    }
    
    .feature-tag i {
        font-size: 0.8rem;
    }
    
    .faq-cta {
        padding: 40px 20px;
        border-radius: 15px;
    }
    
    .cta-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .btn-faq-primary, .btn-faq-secondary {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .final-message p {
        font-size: 1.1rem;
    }
    
    .business-adaptation {
        padding: 80px 0;
    }
    
    .adaptation-header h2 {
        font-size: 2.2rem;
    }
    
    .adaptation-subtitle {
        font-size: 1.1rem;
    }
    
    .divider-line {
        width: 100px;
    }
    
    .divider-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin: 0 20px;
    }
    
    .niches-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .niche-card {
        border-radius: 15px;
    }
    
    .niche-visual {
        padding: 25px 25px 15px;
    }
    
    .niche-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .niche-content {
        padding: 0 25px 25px;
    }
    
    .niche-content h4 {
        font-size: 1.2rem;
    }
    
    .adaptation-cta {
        padding: 40px 30px;
        border-radius: 20px;
    }
    
    .cta-content h3 {
        font-size: 1.6rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .pillar-advanced-card {
        padding: 30px 20px;
    }
    
    .tech-pillars-advanced {
        padding: 60px 0;
    }
    
    .section-header-advanced h2 {
        font-size: 1.8rem;
    }
    
    .header-subtitle {
        font-size: 1rem;
    }
    
    .pillar-header-advanced {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .pillar-icon-advanced {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .pillar-title-section h3 {
        font-size: 1.4rem;
    }
    
    .ai-agents-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .agent-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .conversation-messages {
        gap: 10px;
    }
    
    .message {
        font-size: 0.85rem;
        padding: 10px 14px;
    }
    
    .ai-analysis-overlay {
        flex-direction: column;
        gap: 10px;
    }
    
    .dashboard-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .stage-info {
        width: 150px;
    }
    
    .workflow-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .flow-step {
        min-width: 100px;
    }
    
    .step-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .step-title {
        font-size: 0.8rem;
    }
    
    .step-desc {
        font-size: 0.75rem;
    }
    
    .pillar-advanced-card {
        padding: 25px 15px;
    }
    
    .channels-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .unified-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .flow-stages {
        flex-direction: column;
        gap: 12px;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
    
    .channel-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .channel-metrics {
        text-align: center;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        justify-content: flex-start;
    }
    
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: auto;
        max-width: 280px;
        justify-content: center;
        font-size: 13px;
        padding: 10px 20px;
    }
    
    .floating-stats {
        position: static;
        transform: none;
        justify-content: center;
        margin-top: 30px;
    }
    
    .dashboard-showcase {
        max-width: 100%;
    }
    
    /* Dashboard Responsive */
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .dashboard-charts {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .dashboard-header {
        padding: 16px 20px;
    }
    
    .dashboard-title {
        font-size: 16px;
    }
    
    .dashboard-content {
        padding: 20px;
    }
    
    .metric-card {
        padding: 12px;
    }
    
    .metric-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .metric-number {
        font-size: 16px;
    }
    
    .chart-container {
        padding: 16px;
    }
    
    .funnel-stage {
        font-size: 11px;
    }
    
    .performance-item {
        font-size: 11px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .support-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}
