/* CSS Original das Novas Seções */

/* Differentials Section */
.differentials {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.differential-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.differential-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: #2563eb;
}

.differential-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.differential-icon i {
    font-size: 2rem;
    color: white;
}

.differential-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.differential-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Award Banner Section - Purple Style */
.award-banner-purple {
    background: linear-gradient(135deg, #341C73 0%, #8b5cf6 50%, #a855f7 100%);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.award-banner-purple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #341C73 0%, #7c3aed 100%);
    opacity: 0.9;
}

.award-content-purple {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.award-image-purple {
    flex-shrink: 0;
}

.kommo-badge {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.award-text-purple p {
    font-size: 1.125rem;
    color: white;
    margin: 0;
    font-weight: 600;
    text-align: center;
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.025em;
}

.award-text-purple strong {
    font-weight: 700;
}

.award-text-purple .highlight-text {
    color: #FEF3C7;
    font-weight: 800;
    font-size: 1.125em;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.btn-purple {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
}

.btn-purple:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for Purple Banner */
@media (max-width: 768px) {
    .award-content-purple {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .kommo-badge {
        height: 60px;
    }
    
    .award-text-purple p {
        font-size: 1rem;
    }
    
    .btn-purple {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* BytePrompt Section */
.byteprompt {
    padding: 80px 0;
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
}

.byteprompt-main-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.dashboard-image {
    width: 100%;
    border-radius: 12px;
}

.byteprompt-side-description .byteprompt-intro {
    font-size: 1.125rem;
    color: #374151;
    margin-bottom: 1.5rem;
    font-weight: 500;
    line-height: 1.6;
}

.byteprompt-side-description h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2563eb;
    margin: 1.5rem 0 1rem;
}

.byteprompt-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.byteprompt-features h3,
.byteprompt-use-cases h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 2rem;
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-item i {
    color: #2563eb;
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.feature-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

.use-cases-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.use-case-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.use-case-item i {
    color: #10B981;
    font-size: 1rem;
}

.use-case-item p {
    margin: 0;
    color: #374151;
    font-weight: 500;
}

/* Results Section */
.results {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.problems-solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.problem-solution-card {
    background: white;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    width: 100%;
    max-width: 100%;
}

.problem-solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.problem-side {
    background: linear-gradient(135deg, #fafafa, #f4f4f5);
    padding: 2rem;
    border-bottom: 2px solid #e4e4e7;
}

.problem-side .problem-icon {
    width: 50px;
    height: 50px;
    background: #71717a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.problem-side .problem-icon i {
    color: white;
    font-size: 1.25rem;
}

.problem-side h3 {
    font-size: 1.25rem;
    font-weight: 500;
    color: #52525b;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.problem-side p {
    color: #71717a;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.solution-side {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    padding: 2rem;
}

.solution-side .solution-icon {
    width: 50px;
    height: 50px;
    background: #3b82f6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.solution-side .solution-icon i {
    color: white;
    font-size: 1.25rem;
}

.solution-side h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #1e40af;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.solution-side p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.medical-results-callout {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 3rem;
    color: #1e293b;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.medical-results-callout .callout-header {
    margin-bottom: 2.5rem;
}

.callout-subtitle {
    font-size: 1rem;
    color: #64748b;
    margin: 0.5rem 0 0 0;
    font-weight: 400;
    line-height: 1.5;
}

.medical-results-callout h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #1e293b;
}

.callout-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #2563eb;
}

.stat-text {
    font-size: 1rem;
    font-weight: 500;
    color: #64748b;
    line-height: 1.4;
}

/* Target Section */
.target {
    padding: 80px 0;
    background: linear-gradient(135deg, #F9FAFB 0%, #ffffff 100%);
}

.target-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.target-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.target-icon {
    width: 60px;
    height: 60px;
    background-color: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.target-icon i {
    color: white;
    font-size: 1.5rem;
}

.target-header h2 {
    font-size: 1.875rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.target-description {
    font-size: 1rem;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.target-badges-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.target-badges-title i {
    color: #F59E0B;
}

.target-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.target-badge {
    background-color: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.target-highlight {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.target-highlight i {
    color: #F59E0B;
    font-size: 1.25rem;
    margin-top: 0.125rem;
}

.target-highlight p {
    margin: 0;
    color: #374151;
    line-height: 1.5;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: #ffffff;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: none;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #f8fafc;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-item:hover {
    background-color: #f1f5f9;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.faq-question {
    padding: 1.5rem;
    background-color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #F9FAFB;
}

.faq-question h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.faq-question i {
    color: #2563eb;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 1.5rem 1.5rem 1.5rem;
    background-color: #F9FAFB;
    border-top: 1px solid #e5e7eb;
}

.faq-answer p {
    margin: 0;
    color: #6b7280;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .byteprompt-main-layout,
    .byteprompt-content,
    .target-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .problems-solutions-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .differentials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .award-content {
        text-align: center;
    }
    
    .problems-solutions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .problem-solution-card {
        max-width: 100%;
        min-width: unset;
    }
    
    .callout-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .medical-results-callout {
        padding: 2rem 1.5rem;
    }
    
    .target-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .target-badges {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .problems-solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .problem-solution-card {
        min-width: unset;
    }
    
    .problem-side,
    .solution-side {
        padding: 1.5rem;
    }
    
    .differential-card,
    .faq-question {
        padding: 1.25rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}
}