/* === ATALHOS SECTION === */
.atalhos-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fefce8 0%, #fef3c7 100%);
    position: relative;
    overflow: hidden;
}

.atalhos-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 60%;
    height: 160%;
    background: radial-gradient(ellipse at center, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.atalhos-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.badge-icon {
    font-size: 1.1rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight-text {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

/* === CONTEÚDO ATALHOS === */
.atalhos-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
    align-items: start;
}

/* === EXPLICAÇÃO === */
.atalhos-explanation {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.1);
}

.atalhos-explanation h3 {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
}

/* === LISTA DE BENEFÍCIOS === */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 1.5rem;
    min-width: 35px;
    text-align: center;
}

.benefit-text h4 {
    color: #1e293b;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.benefit-text p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* === INTERFACE MOCKUP === */
.atalhos-interface {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.interface-mockup {
    background: white;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.1);
}

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

.header-title {
    font-weight: 600;
    color: #1e293b;
    font-size: 1.1rem;
}

.new-shortcut-btn {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.new-shortcut-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

/* === LISTA DE ATALHOS === */
.shortcuts-list {
    margin-bottom: 30px;
}

.shortcut-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.shortcut-item:hover {
    background: #f1f5f9;
    border-color: #f59e0b;
    transform: translateX(5px);
}

.shortcut-info {
    flex: 1;
}

.shortcut-trigger {
    font-family: 'Fira Code', monospace;
    background: #1e293b;
    color: #fbbf24;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 8px;
}

.shortcut-preview {
    color: #475569;
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.4;
}

.shortcut-meta {
    display: flex;
    gap: 15px;
    align-items: center;
}

.shortcut-actions {
    display: flex;
    gap: 8px;
}

.action-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: #e2e8f0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-btn:hover {
    background: #f59e0b;
    transform: scale(1.1);
}

/* === RESPONSIVIDADE === */
@media (max-width: 968px) {
    .atalhos-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .media-types {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .shortcut-item {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .mockup-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
